Skip to content
Merged
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
17 changes: 10 additions & 7 deletions .github/workflows/sync-version-branches.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
name: Sync branches
name: Sync v12.0 -> v13.0
on:
push:
branches: [ 'v12.0', 'v13.0' ]
branches:
- 'v12.0'
workflow_dispatch:

concurrency:
group: sync-v12-to-v13
cancel-in-progress: true

jobs:
sync_branches:
name: Sync Branches
runs-on: ubuntu-latest
steps:
- name: Keep branches in sync
- name: Keep v13.0 in sync with v12.0
uses: jojomatik/[email protected]
with:
source: "v12.0"
Expand All @@ -17,7 +23,4 @@ jobs:
resolve_conflicts: "false"
git_committer_name: 'BenjaminMichaelisBot'
git_committer_email: '[email protected]'
# The access token to push to the repository
# Optional
# Default: github.token
github_token: ${{ secrets.GIT_PUSHTOKEN }}
github_token: ${{ secrets.GIT_PUSHTOKEN }}
Loading