Skip to content

Commit 4739882

Browse files
authored
chore(ci): merge to prod branch on release
1 parent e9a7221 commit 4739882

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/on-release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Sync from staging to prod
2+
on:
3+
push:
4+
tags:
5+
- '**'
6+
jobs:
7+
sync-branch:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@master
11+
12+
- name: Merge staging -> prod
13+
uses: devmasx/merge-branch@master
14+
with:
15+
type: now
16+
from_branch: next
17+
target_branch: prod
18+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)