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 b730047 commit 31ff446Copy full SHA for 31ff446
.github/workflows/notify.yaml
@@ -26,8 +26,9 @@ name: Notify
26
jobs:
27
on-failure:
28
runs-on: ubuntu-20.04
29
- if: ${{ github.event.workflow_run.conclusion != 'success' && (github.event.workflow_run.head_branch
30
- == 'main' || github.event.workflow_run.event == 'release')}}
+ if: ${{ github.event.workflow_run.status != 'in_progress' && github.event.workflow_run.conclusion
+ != 'success' && (github.event.workflow_run.head_branch == 'main' || github.event.workflow_run.event
31
+ == 'release')}}
32
steps:
33
- name: Read triggering event
34
run: cat ${{ github.event_path }}
0 commit comments