You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 18, 2021. It is now read-only.
It would be useful to have a level called "warning". If a commit has statuses that are all success or warning, then an orange exclamation mark should be used to annotate the commit, instead of a red X. If there is at least one failure, then you should get the red X.
This would clean up the implementation of "recommended but not required" checks for PRs. For example, in unicode-org/icu, we have a recommended policy that a PR contains only one commit. We currently have this set up as a non-required status that fails, which causes the whole PR to get the red X, even when all of the other checks are green.
The text was updated successfully, but these errors were encountered:
🥺This would be great for steps that may fail expectedly without having to write complex checking logic around the steps to get to the same result. e.g. a step that runs "npm publish". Right now that fails if the package version hasn't been updated and it fails the entire workflow. It'd be great to be able to declare that some steps fail with a warning. That way we could see that if the build failed with a warning then the critical steps (build, test) worked but the secondary steps (publishing) failed.
When creating a status on a commit, there are only four choices: error, failure, pending, or success.
https://developer.github.com/v3/repos/statuses/
It would be useful to have a level called "warning". If a commit has statuses that are all success or warning, then an orange exclamation mark should be used to annotate the commit, instead of a red X. If there is at least one failure, then you should get the red X.
This would clean up the implementation of "recommended but not required" checks for PRs. For example, in unicode-org/icu, we have a recommended policy that a PR contains only one commit. We currently have this set up as a non-required status that fails, which causes the whole PR to get the red X, even when all of the other checks are green.
The text was updated successfully, but these errors were encountered: