diff --git a/.github/workflows/merge-live.yml b/.github/workflows/merge-live.yml new file mode 100644 index 0000000000..86b03cfbf8 --- /dev/null +++ b/.github/workflows/merge-live.yml @@ -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 }}