Weekly Live Release #102
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: Weekly Live Release | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
jobs: | |
create_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create PR | |
run: | | |
PRNUMBER=`gh pr create --title "Live Release" --body "Automated Release" --base main --head staging` | |
gh pr merge $PRNUMBER --auto --merge | |
gh workflow run test.yml --ref main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |