-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Fix merge dialog on protected branch with missing required statuses (#11074) #11084
Fix merge dialog on protected branch with missing required statuses (#11074) #11084
Conversation
…o-gitea#11074) It is possible for misconfigured protected branches to have required status checks that are not in any of the current statuses: Pending, Success, Error, Failure, or Warning - presumably because the CI has not contacted us as yet. Fix go-gitea#10636 by adding case: missing StatusChecks when these are missing
@@ -1062,6 +1062,7 @@ pulls.data_broken = This pull request is broken due to missing fork information. | |||
pulls.files_conflicted = This pull request has changes conflicting with the target branch. | |||
pulls.is_checking = "Merge conflict checking is in progress. Try again in few moments." | |||
pulls.required_status_check_failed = Some required checks were not successful. | |||
pulls.required_status_check_missing = Some required checks are missing. |
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.
How will this work with Crowdin now?
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.
maybe should translate it manually ... :(
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.
it will work just fine, crowdin checks only master branch. In this case this text will be in English in all languages
Backport of #11074