Skip to content

Commit

Permalink
Update slack_integration.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
drewoldag authored Oct 6, 2023
1 parent 39cace2 commit e4159dc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/slack_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
return-values: [1, 0]

steps:
- name: Always fail
run: exit 1
- name: Always pass
run: exit 0
run: exit ${{ matrix.return-values }}
- name: Send custom JSON data to Slack workflow
if: ${{ failure() }}
id: slack
Expand Down

0 comments on commit e4159dc

Please sign in to comment.