Skip to content

Commit

Permalink
chore(actions): add sync
Browse files Browse the repository at this point in the history
  • Loading branch information
son-daehyeon committed Aug 17, 2024
1 parent d7c071d commit 043d3d3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/sync.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Sync develop to master

on:
push:
branches:
- master

jobs:
sync:
runs-on: ubuntu-latest
name: Sync development branch with master

steps:
- name: Checkout Dev
uses: actions/checkout@v4
with:
ref: develop

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

0 comments on commit 043d3d3

Please sign in to comment.