From d9ac69cf8fb2f2be34d05eadb73b877a474476e5 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Tue, 21 May 2024 16:06:08 +0200 Subject: [PATCH] Removed subscription to `auto-merge-bot` As explained in paritytech/up-to-date-action#18, the issue is caused because the `skipped` event is treated as `completed`. Until a better solution is generated, let's remove this event and triggered it only in pushes. This reverts #272 --- .github/workflows/up-to-date.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/up-to-date.yml b/.github/workflows/up-to-date.yml index ccf3277aca..a660979a8a 100644 --- a/.github/workflows/up-to-date.yml +++ b/.github/workflows/up-to-date.yml @@ -4,9 +4,6 @@ on: push: branches: - main - workflow_run: - workflows: [Auto Merge Bot] - types: [completed] jobs: updatePullRequests: @@ -16,7 +13,7 @@ jobs: steps: - name: Generate token id: generate_token - uses: actions/create-github-app-token@v1.9.3 + uses: actions/create-github-app-token@v1 with: app-id: ${{ secrets.MERGE_APP_ID }} private-key: ${{ secrets.MERGE_APP_KEY }}