feat: add Python test failure notification#61
Open
paul-dave80 wants to merge 2 commits intoFullStackWithLawrence:mainfrom
Open
feat: add Python test failure notification#61paul-dave80 wants to merge 2 commits intoFullStackWithLawrence:mainfrom
paul-dave80 wants to merge 2 commits intoFullStackWithLawrence:mainfrom
Conversation
Author
Validation UpdateI manually triggered the Python Unit Tests workflow from the The workflow result confirmed the intended notification behavior:
This confirms that the failure-notification workflow runs after the test job fails and successfully creates a trackable GitHub Issue notification. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates the Python Unit Tests GitHub Actions workflow to create a GitHub Issue notification when the
python-unit-testsjob fails.Changes
if: ${{ always() }}so the notification job still runs even when the test job fails.needs.python-unit-tests.resultto check whether the test job failed.gh issue create.NOTIFY_USERrepository variable, withgithub.actoras the fallback.Testing
git diff --checksuccessfully.testsPython.ymlfile is visible on GitHub.Notes
No new external dependencies were added.