From a850d305a1f035ef1038c19cb0ddd76e55532aa7 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Wed, 8 Sep 2021 14:46:57 -0400 Subject: [PATCH] Add a workflow to automatically merge dev into V5 --- .github/workflows/v5-merge.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/v5-merge.yml diff --git a/.github/workflows/v5-merge.yml b/.github/workflows/v5-merge.yml new file mode 100644 index 0000000000..79227ffe94 --- /dev/null +++ b/.github/workflows/v5-merge.yml @@ -0,0 +1,28 @@ +name: 'V5 Merge' + +on: + push: + branches: + - dev + +jobs: + master-merge: + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Merge dev into V5 + uses: robotology/gh-action-nightly-merge@v1.2.0 + with: + stable_branch: 'dev' + development_branch: 'V5' + allow_ff: true + user_name: tgstation-server + user_email: tgstation-server@users.noreply.github.com + push_token: DEV_PUSH_TOKEN + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + DEV_PUSH_TOKEN: ${{ secrets.DEV_PUSH_TOKEN }}