Sync PR #353
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sync PR | |
| on: | |
| push: | |
| branches: | |
| - '2.*.x' | |
| schedule: | |
| - cron: '13 05 * * 1,3,5' # 05:13 UTC Mon,Wed,Fri | |
| workflow_dispatch: | |
| inputs: | |
| head_branch: | |
| description: Branch to merge into master | |
| required: true | |
| jobs: | |
| sync: | |
| uses: cylc/release-actions/.github/workflows/branch-sync.yml@v1 | |
| with: | |
| head_branch: ${{ inputs.head_branch }} | |
| ignore_branches: 2019.01.x | |
| secrets: inherit |