Skip to content

Commit

Permalink
Create sync-with-production.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
blackcathj authored Jul 16, 2021
1 parent 9ab5af6 commit a5acd1f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/sync-with-production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Sync production branches
on:
push:
branches:
- 'production'
jobs:
sync-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

- name: Merge production -> production_singleElectron_0-20GeV
uses: devmasx/merge-branch@v1.3.1
with:
type: now
from_branch: production
target_branch: production_singleElectron_0-20GeV
github_token: ${{ github.token }}

- name: Merge production -> production_singlePion_0-20GeV
uses: devmasx/merge-branch@v1.3.1
with:
type: now
from_branch: production
target_branch: production_singlePion_0-20GeV
github_token: ${{ github.token }}

0 comments on commit a5acd1f

Please sign in to comment.