From dfe9aa03ce78b108fc66fbd1ab0b421634dc6d53 Mon Sep 17 00:00:00 2001 From: Ronnie Dutta <61982285+MetRonnie@users.noreply.github.com> Date: Fri, 5 Apr 2024 12:27:34 +0100 Subject: [PATCH] GH Actions: add branch sync workflow --- .github/workflows/branch_sync.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/branch_sync.yml diff --git a/.github/workflows/branch_sync.yml b/.github/workflows/branch_sync.yml new file mode 100644 index 0000000000..d9b8878c0e --- /dev/null +++ b/.github/workflows/branch_sync.yml @@ -0,0 +1,20 @@ +name: Sync PR + +on: + push: + branches: + - '8.*.x' + schedule: + - cron: '11 11 * * 7' # every Sunday at 11:11 + 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 }} + secrets: inherit