From a78d8922dde9f84cccb3f34188683e278fd148ee Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Thu, 2 May 2024 01:42:41 +0900 Subject: [PATCH] Update use of actions --- .github/workflows/merge-bot-pr.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/merge-bot-pr.yml b/.github/workflows/merge-bot-pr.yml index f609ef0..8d9e0c6 100644 --- a/.github/workflows/merge-bot-pr.yml +++ b/.github/workflows/merge-bot-pr.yml @@ -19,6 +19,8 @@ jobs: - name: Wait other jobs if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }} uses: kachick/wait-other-jobs@v3 + with: + skip-same-workflow: 'true' timeout-minutes: 10 - name: Approve and merge if: ${{ (steps.metadata.outputs.update-type != 'version-update:semver-major') || contains(steps.metadata.outputs.dependency-names, 'DeterminateSystems') }} @@ -35,6 +37,8 @@ jobs: steps: - name: Wait other jobs uses: kachick/wait-other-jobs@v3 + with: + skip-same-workflow: 'true' timeout-minutes: 20 - name: Approve and merge run: gh pr review --approve "$PR_URL" && gh pr merge --auto --delete-branch --squash "$PR_URL"