rename old scheduled merge workflow #1
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' | |
## OLD SCHEDULED MERGE - NOT CURRENTLY SCHEDULED | |
#on: | |
# schedule: | |
# - cron: '0 16,22 * * *' | |
jobs: | |
nightly-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Auto Merge Stage into Master | |
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 }} |