Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bot-ci-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

permissions:
pull-requests: write
actions: read
actions: write # needed for auto retries of flaky CI builds
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
contents: read

concurrency:
Expand All @@ -18,7 +18,7 @@ concurrency:
jobs:
find-pr:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
if: ${{ github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.event == 'pull_request' }}
Comment thread
stktyagi marked this conversation as resolved.
outputs:
pr_number: ${{ steps.pr.outputs.number }}
pr_author: ${{ steps.pr.outputs.author }}
Expand Down
Loading