Skip to content

Commit

Permalink
Merge pull request #582 from MetRonnie/actions
Browse files Browse the repository at this point in the history
GH Actions: add branch sync workflow from master
  • Loading branch information
oliver-sanders authored Apr 5, 2024
2 parents d477500 + e865611 commit c95ac52
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/branch_sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Sync PR

on:
push:
branches:
- '*.*.x'
schedule:
- cron: '49 03 * * 1-5' # 03:49 UTC Mon-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 }}
secrets: inherit

0 comments on commit c95ac52

Please sign in to comment.