We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to remove all the status checks that are added under my branch protection, to do so I tried using this UPDATE API call with the array of status checks as empty: https://docs.github.com/en/free-pro-team@latest/rest/reference/repos#update-status-check-protection but I'm not able to achieve what I wanted. Then I tried using this recent DELETE API to remove status checks, https://docs.github.com/en/free-pro-team@latest/rest/reference/repos#remove-status-check-protection It worked but there is no equivalent function in this go package. Can you add the same?
UPDATE
DELETE
The text was updated successfully, but these errors were encountered:
@gmlewis I can take this.
Sorry, something went wrong.
Add RemoveRequiredStatusChecks API and tests (#1776)
9c17d51
Fixes #1770.
n1lesh
Successfully merging a pull request may close this issue.
I want to remove all the status checks that are added under my branch protection, to do so I tried using this
UPDATE
API call with the array of status checks as empty: https://docs.github.com/en/free-pro-team@latest/rest/reference/repos#update-status-check-protectionbut I'm not able to achieve what I wanted.
Then I tried using this recent
DELETE
API to remove status checks,https://docs.github.com/en/free-pro-team@latest/rest/reference/repos#remove-status-check-protection
It worked but there is no equivalent function in this go package. Can you add the same?
The text was updated successfully, but these errors were encountered: