Skip to content

Commit

Permalink
announce bool value
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkannawadi authored Aug 29, 2024
1 parent ffde27d commit f6d5f81
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/notification_trial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Announce event
run: echo ${{ github.event_name }}
run: |
echo ${{ github.event_name }}
echo ${{ github.event_name == 'pull_request' }}
- name: failing step
run: exit 1
continue-on-error: true
on-failure:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' && needs.failing-job.result == 'failure' }}
Expand Down

0 comments on commit f6d5f81

Please sign in to comment.