From b5c80764dee22bd8c47b031cf82e9ff1cf3001c7 Mon Sep 17 00:00:00 2001 From: KingRainbow44 Date: Mon, 8 May 2023 01:55:55 -0400 Subject: [PATCH] Move `check_code` to `unstable` only --- .github/workflows/check_code.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_code.yml b/.github/workflows/check_code.yml index c128e1905..29a740be3 100644 --- a/.github/workflows/check_code.yml +++ b/.github/workflows/check_code.yml @@ -8,7 +8,6 @@ on: - "**.json" branches: - "unstable" - - "unstable-quests" jobs: Format-Code: @@ -39,10 +38,10 @@ jobs: - run: git config --global user.name "github-actions" - run: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - run: git stash - - run: git checkout development + - run: git checkout unstable - run: git stash pop || true - name: Commit Code Changes run: git add -u && git commit -m 'Format code [skip actions]' || true - name: Push Code Changes - run: git push --set-upstream --force ${{ github.event.pull_request.base.ref }} + run: git push --set-upstream --force origin unstable