Merge dev to stage #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Merge dev to stage | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '15 14 * * *' | |
jobs: | |
merge: | |
name: Merge | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: 'dev' | |
- name: Merge dev to stage | |
uses: devmasx/[email protected] | |
with: | |
type: now | |
target_branch: stage | |
github_token: ${{ github.token }} |