aboutsummaryrefslogtreecommitdiffstats
path: root/services/convert
diff options
context:
space:
mode:
authorcaicandong <50507092+CaiCandong@users.noreply.github.com>2023-07-21 16:24:36 +0800
committerGitHub <noreply@github.com>2023-07-21 16:24:36 +0800
commit840830b655a65c0763e3fd4bd0ced9256d2081a5 (patch)
treecb7ce50867f197eac04b735d57e15c45c43347b7 /services/convert
parentd57e55cd470ec737c8a9458f0ef96455e0c322ec (diff)
downloadgitea-840830b655a65c0763e3fd4bd0ced9256d2081a5.tar.gz
gitea-840830b655a65c0763e3fd4bd0ced9256d2081a5.zip
Remove commit status running and warning to align GitHub (#25839)
Fix #25776. Close #25826. In the discussion of #25776, @wolfogre's suggestion was to remove the commit status of `running` and `warning` to keep it consistent with github. references: - https://docs.github.com/en/rest/commits/statuses?apiVersion=2022-11-28#about-commit-statuses ## :warning: BREAKING :warning: So the commit status of Gitea will be consistent with GitHub, only `pending`, `success`, `error` and `failure`, while `warning` and `running` are not supported anymore. --------- Co-authored-by: Jason Song <i@wolfogre.com>
Diffstat (limited to 'services/convert')
-rw-r--r--services/convert/status.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/services/convert/status.go b/services/convert/status.go
index b8c11ab630..c7b6450e27 100644
--- a/services/convert/status.go
+++ b/services/convert/status.go
@@ -52,6 +52,14 @@ func ToCombinedStatus(ctx context.Context, statuses []*git_model.CommitStatus, r
retStatus.State = status.State
}
}
+ // According to https://docs.github.com/en/rest/commits/statuses?apiVersion=2022-11-28#get-the-combined-status-for-a-specific-reference
+ // > Additionally, a combined state is returned. The state is one of:
+ // > failure if any of the contexts report as error or failure
+ // > pending if there are no statuses or a context is pending
+ // > success if the latest status for all contexts is success
+ if retStatus.State.IsError() {
+ retStatus.State = api.CommitStatusFailure
+ }
return retStatus
}