Fix CI workflow: Make Slack notification non-fatal #9441
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.
Resolves #8864
Description
This pull request:
SLACK_WEBHOOK_URLsecret by making the Slack notification step non-fatal across all workflow files.Changes:
continue-on-error: trueto Slack notification steps in all affected workflow filesRelated Issues
This pull request has the following related issues:
randomrepository #8864Questions
No.
Other
Files Modified:
.github/workflows/linux_test.yml.github/workflows/linux_test_cov.yml.github/workflows/linux_test_install.yml.github/workflows/linux_benchmark.yml.github/workflows/linux_examples.yml.github/workflows/macos_test.yml.github/workflows/macos_test_cov.yml.github/workflows/macos_benchmark.yml.github/workflows/windows_test_npm_install.yml.github/workflows/standalone_publish.yml.github/workflows/standalone_test.yml.github/workflows/test_published_package.ymlTesting:
Checklist
AI Assistance
If you answered "yes" above, how did you use AI assistance?
Disclosure
I consulted AI to understand the CI failure patterns and identify that the Slack notification step was blocking the pipeline. It helped me analyze the issue and suggested the
continue-on-error: truesolution. All workflow file modifications were authored manually by myself after understanding the suggested approach.@stdlib-js/reviewers