Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/buildConfiguration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,10 @@ customBuilds:
triggers:
- type: cron
schedule: '@midnight'

- name: Update Submodule
jobName: updateSubmoduleJob
scriptPath: .github/jenkinsfile/updateSubmodule.groovy
triggers:
- type: cron
schedule: H H(3-7) * * 2
7 changes: 7 additions & 0 deletions .github/jenkinsfile/updateSubmodule.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
gitPullRequestPipeline {
dockerImageName = 'symbolplatform/build-ci:cpp-ubuntu-lts'
prBranchName = 'fix/update_submodule'
scriptSetupCommand = 'bash init.sh'
scriptCommand = 'git submodule update --remote; git add .; git commit -m "[monorepo] fix: update submodule"'
reviewers = []
}