Skip to content

Commit

Permalink
feat: github action workflow 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
krrong committed Nov 17, 2023
1 parent 451eae6 commit 0ab18a2
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/project_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: NAAGA PROJECT CI

on:
push:
branches:
- 'release/**'
- 'hotfix/**'

jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

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

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

0 comments on commit 0ab18a2

Please sign in to comment.