Sync Dev -> Staging #326
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: Sync Dev -> Staging | |
on: | |
schedule: | |
- cron: "0 8 * * 1-5" # every day at midnight | |
workflow_dispatch: | |
jobs: | |
sync-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Merge development -> staging | |
uses: devmasx/merge-branch@master | |
with: | |
type: now | |
from_branch: dev | |
target_branch: staging | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Invoke Checks Workflow | |
uses: benc-uk/workflow-dispatch@v121 | |
with: | |
workflow: checks.yml | |
ref: staging | |
- name: Invoke CI Workflow | |
uses: benc-uk/workflow-dispatch@v121 | |
with: | |
workflow: ci.yml | |
ref: staging |