Skip to content

Fix sync workflow to only trigger on v12.0 pushes and add concurrency… #116

Fix sync workflow to only trigger on v12.0 pushes and add concurrency…

Fix sync workflow to only trigger on v12.0 pushes and add concurrency… #116

name: Sync v12.0 -> v13.0
on:
push:
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 v13.0 in sync with v12.0
uses: jojomatik/[email protected]
with:
source: "v12.0"
target: "v13.0"
strategy: "merge"
resolve_conflicts: "false"
git_committer_name: 'BenjaminMichaelisBot'
git_committer_email: '[email protected]'
github_token: ${{ secrets.GIT_PUSHTOKEN }}