Skip to content

Commit

Permalink
chore: consider cancelled jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales committed Oct 24, 2023
1 parent 1e45c25 commit 9bb8f05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apexE2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
type: 'e2e'

slack_failure_notification:
if: ${{ failure() }}
if: ${{ failure() || cancelled() }}
needs: [apexLSP, apexReplayDebugger, debugApexTests, runApexTests, trailApexReplayDebugger]
uses: ./.github/workflows/slackNotification.yml
secrets: inherit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coreE2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
type: 'e2e'

slack_failure_notification:
if: ${{ failure() }}
if: ${{ failure() || cancelled() }}
needs: [anInitialSuite, authentication, deployAndRetrieve, manifestBuilder, pushAndPull, sObjectsDefinitions, templates]
uses: ./.github/workflows/slackNotification.yml
secrets: inherit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lspE2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
type: 'e2e'

slack_failure_notification:
if: ${{ failure() }}
if: ${{ failure() || cancelled() }}
needs: [auraLSP, lwcLSP, visualforceLSP]
uses: ./.github/workflows/slackNotification.yml
secrets: inherit
Expand Down

0 comments on commit 9bb8f05

Please sign in to comment.