From d82a45aa68ef2a7c76904331edcbb797013f4c4a Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Wed, 18 Dec 2024 16:53:31 +0500 Subject: [PATCH] internal: delete .github/workflows/gather_prs_test.yml (#2272) --- .github/workflows/gather_prs_test.yml | 41 --------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/gather_prs_test.yml diff --git a/.github/workflows/gather_prs_test.yml b/.github/workflows/gather_prs_test.yml deleted file mode 100644 index 019846a667..0000000000 --- a/.github/workflows/gather_prs_test.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Gather PRs test - -on: - workflow_dispatch: - inputs: - branch: - description: 'Branch, meaning server instance' - required: true - type: choice - options: - - 'sweetpie' - - 'indev' - default: 'indev' -jobs: - gather_prs_test: - runs-on: ubuntu-latest - env: - DEPLOY_BRANCH: ${{ github.event.inputs.branch }} - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 1 - submodules: 'true' - - name: Gather PRs - uses: Pospelove/auto-merge-action@main - with: - path: ${{github.workspace}} - repositories: | - [ - { - "owner": "skyrim-multiplayer", - "repo": "skymp", - "labels": ["merge-to:${{env.DEPLOY_BRANCH}}"] - }, - { - "owner": "skyrim-multiplayer", - "repo": "skymp5-patches", - "labels": ["merge-to:${{env.DEPLOY_BRANCH}}"], - "token": "${{secrets.SKYMP5_PATCHES_PAT}}" - } - ]