Skip to content

Commit

Permalink
Add continue-on-error for gh actions notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
ffont committed Jul 27, 2023
1 parent 47ea6fa commit ba59764
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
driver: docker

- name: Notify workflow starting
uses: voxmedia/github-action-slack-notify-build@v1
continue-on-error: true
if: success()
id: slack
uses: voxmedia/github-action-slack-notify-build@v1
with:
channel_id: ${{ secrets.SLACK_NOTIFICATIONS_CHANNEL_ID }}
status: STARTING
Expand Down Expand Up @@ -58,6 +59,7 @@ jobs:

- name: Notify success
uses: voxmedia/github-action-slack-notify-build@v1
continue-on-error: true
if: success()
with:
message_id: ${{ steps.slack.outputs.message_id }}
Expand Down

0 comments on commit ba59764

Please sign in to comment.