From 25278c497193f1758faec645bb7efc7fe3e34f34 Mon Sep 17 00:00:00 2001 From: Kirk Larkin <6025110+serpent5@users.noreply.github.com> Date: Fri, 3 Dec 2021 10:06:18 +0000 Subject: [PATCH] Add GitHub Workflow for Merge to Live (#24174) --- .github/workflows/merge-live.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/merge-live.yml 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 }}