Skip to content

Commit 9f22a6c

Browse files
Merge pull request #706 from cylc/8.2.x
8.2.x -> master (adds branch sync workflow)
2 parents 478356d + 3882728 commit 9f22a6c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/branch_sync.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Sync PR
2+
3+
on:
4+
push:
5+
branches:
6+
- '8.*.x'
7+
schedule:
8+
- cron: '11 11 * * 7' # every Sunday at 11:11
9+
workflow_dispatch:
10+
inputs:
11+
head_branch:
12+
description: Branch to merge into master
13+
required: true
14+
15+
jobs:
16+
sync:
17+
uses: cylc/release-actions/.github/workflows/branch-sync.yml@v1
18+
with:
19+
head_branch: ${{ inputs.head_branch }}
20+
secrets: inherit

0 commit comments

Comments
 (0)