Scheduled Merge - Weekdays #397
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
# From https://github.com/marketplace/actions/nightly-merge | |
name: 'Scheduled Merge - Weekdays' | |
on: | |
schedule: | |
- cron: '0 16,22 * * 1-5' | |
jobs: | |
nightly-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Auto Merge Stage into Master - weekdays | |
uses: CumulusNetworks/[email protected] | |
with: | |
source_branch: 'stage' | |
target_branch: 'master' | |
user_name: Cumulus Docs Auto Merge | |
user_email: [email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.STU_GITHUB_TOKEN }} |