-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only slack full smoke test failures (#4287)
Simply changing github action settings to only slack smoke test failures (not passing runs) ### QA Notes Smoke test failures should be reported to slack.
- Loading branch information
1 parent
4bc25cd
commit ef4f51c
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,7 +148,7 @@ jobs: | |
path: .build/logs/smoke-tests-electron/ | ||
|
||
- name: slack-smoke-test-report | ||
if: always() | ||
if: failure() | ||
uses: testlabauto/[email protected] | ||
env: | ||
SLACK_CHANNEL: C07FR1JNZNJ #positron-test-results channel | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,7 +115,7 @@ jobs: | |
path: .build/logs/smoke-tests-electron/ | ||
|
||
- name: slack-smoke-test-report | ||
if: failure() | ||
if: ${{ failure() && inputs.smoketest_target == 'smoketest-merge-to-main' }} | ||
uses: testlabauto/[email protected] | ||
env: | ||
SLACK_CHANNEL: C07FR1JNZNJ #positron-test-results channel | ||
|