Add GitHub Workflow for Merge to Live (#24174)

pull/24183/head
Kirk Larkin 2021-12-03 10:06:18 +00:00 committed by GitHub
parent 4e1c71c036
commit 25278c4971
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
name: Merge to Live
on:
workflow_dispatch
jobs:
default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: gh pr create --base live --head main --title "Merge to Live" --body "[AUTOMATED]"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}