Skip to content

Commit

Permalink
feat: Create sync-version-branches.yml
Browse files Browse the repository at this point in the history
fix: Update sync-version-branches.yml

Token can't start with GITHUB
  • Loading branch information
BenjaminMichaelis committed Nov 8, 2023
1 parent 1e5eabc commit 0f00542
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/sync-version-branches.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Sync branches
on:
push:
branches: [ 'v12.0', 'v13.0' ]

jobs:
sync_branches:
name: Sync Branches
runs-on: ubuntu-latest
steps:
- name: Keep branches in sync
uses: jojomatik/sync-branch@latest
with:
source: "v12.0"
target: "v13.0
strategy: "merge"
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 }}

0 comments on commit 0f00542

Please sign in to comment.