From 855e023758b53b197e63af2b792d8cff959da554 Mon Sep 17 00:00:00 2001 From: Pablo2048 Date: Sat, 12 Oct 2024 15:34:48 +0200 Subject: [PATCH] Refuse to use GA :-( --- .github/workflows/sync-main-to-dev.yml | 27 -------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/sync-main-to-dev.yml diff --git a/.github/workflows/sync-main-to-dev.yml b/.github/workflows/sync-main-to-dev.yml deleted file mode 100644 index 890107a..0000000 --- a/.github/workflows/sync-main-to-dev.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Update Development Branch After PR Merge - -on: - pull_request: - types: [closed] - -jobs: - update-dev: - if: github.event.pull_request.merged == true && github.ref == 'refs/heads/main' - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Configure Git user - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - - - name: Set executable permissions - run: chmod +x ./update_dev.sh - - - name: Run update_dev.sh script - run: ./update_dev.sh