Skip to content

Commit

Permalink
chore(ci): merge to prod branch on release
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerzl authored Sep 14, 2024
1 parent e9a7221 commit 4739882
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Sync from staging to prod
on:
push:
tags:
- '**'
jobs:
sync-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

- name: Merge staging -> prod
uses: devmasx/merge-branch@master
with:
type: now
from_branch: next
target_branch: prod
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4739882

Please sign in to comment.