2021-12-03 18:06:18 +08:00
|
|
|
name: Merge to Live
|
2021-12-03 18:20:20 +08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
2021-12-03 18:06:18 +08:00
|
|
|
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 }}
|