We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0591471 commit 90653a1Copy full SHA for 90653a1
.github/workflows/automerge.yml
@@ -33,7 +33,9 @@ jobs:
33
automerge:
34
needs: automerge-check
35
runs-on: ubuntu-latest
36
- if: ${{ needs.automerge-check.outputs.status == 'true' }}
+ # The check for the user is redundant here, as this job depends on the automerge-check job,
37
+ # but it prevents this job from spinning up, just to be skipped shortly after.
38
+ if: github.event.pull_request.user.login == 'web3-bot' && needs.automerge-check.outputs.status == 'true'
39
steps:
40
- name: Wait on tests
41
uses: lewagon/wait-on-check-action@bafe56a6863672c681c3cf671f5e10b20abf2eaa # v0.2
0 commit comments