Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove allowance for failure in PR checks #7997

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Allow failure in PR checks
Added an option to allow failure in the pull request checks. This change makes it possible for a check to fail without causing the entire workflow to fail, thus improving the robustness of our CI/CD pipeline.
  • Loading branch information
drew2a committed Apr 22, 2024
commit a17e4fbfc9f85432f5c3a7ad13777602a90fdfea
1 change: 1 addition & 0 deletions .github/workflows/!PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
with:
one_of: 'PR: safe to check'
repo_token: ${{ secrets.GITHUB_TOKEN }}
allow_failure: true

- name: Check if user has write access
id: permission_check
Expand Down
Loading