-
Notifications
You must be signed in to change notification settings - Fork 39.3k
Disable api-version-check for now #300495
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -23,11 +23,11 @@ jobs: | |||||||||||||||||||||
| check-version-changes: | ||||||||||||||||||||||
| name: Check API Proposal Version Changes | ||||||||||||||||||||||
| # Run on PR events, or on issue_comment if it's on a PR and contains the override command | ||||||||||||||||||||||
| if: | | ||||||||||||||||||||||
| github.event_name == 'pull_request' || | ||||||||||||||||||||||
| (github.event_name == 'issue_comment' && | ||||||||||||||||||||||
| github.event.issue.pull_request && | ||||||||||||||||||||||
| contains(github.event.comment.body, '/api-proposal-change-required')) | ||||||||||||||||||||||
| if: false # temporarily disabled | ||||||||||||||||||||||
| # github.event_name == 'pull_request' || | ||||||||||||||||||||||
| # (github.event_name == 'issue_comment' && | ||||||||||||||||||||||
| # github.event.issue.pull_request && | ||||||||||||||||||||||
| # contains(github.event.comment.body, '/api-proposal-change-required')) | ||||||||||||||||||||||
|
Comment on lines
+26
to
+30
|
||||||||||||||||||||||
| if: false # temporarily disabled | |
| # github.event_name == 'pull_request' || | |
| # (github.event_name == 'issue_comment' && | |
| # github.event.issue.pull_request && | |
| # contains(github.event.comment.body, '/api-proposal-change-required')) | |
| # github.event_name == 'pull_request' || | |
| # (github.event_name == 'issue_comment' && | |
| # github.event.issue.pull_request && | |
| # contains(github.event.comment.body, '/api-proposal-change-required')) | |
| if: false # temporarily disabled |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting
if: falseskips the job entirely (conclusion becomes “skipped/neutral”), which won’t satisfy branch protection if this workflow/job is configured as a required check. If the goal is to unblock merges while disabling the enforcement, consider keeping the job running and exiting successfully with a short no-op step, or adjust branch protection/required checks in tandem with this change.