mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-07 02:39:31 +01:00
remove IsWarning in tmpl (#26120)
This problem occurs because in #25839, the warning status has been removed, but there is something in the tmpl that hasn't been changed. related #25839 close #26118
This commit is contained in:
parent
b3c71ec64f
commit
ab72f7ee4a
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
||||||
{{- else if .IsBlockedByOutdatedBranch}}red
|
{{- else if .IsBlockedByOutdatedBranch}}red
|
||||||
{{- else if .IsBlockedByChangedProtectedFiles}}red
|
{{- else if .IsBlockedByChangedProtectedFiles}}red
|
||||||
{{- else if and .EnableStatusCheck (or .RequiredStatusCheckState.IsFailure .RequiredStatusCheckState.IsError)}}red
|
{{- else if and .EnableStatusCheck (or .RequiredStatusCheckState.IsFailure .RequiredStatusCheckState.IsError)}}red
|
||||||
{{- else if and .EnableStatusCheck (or (not $.LatestCommitStatus) .RequiredStatusCheckState.IsPending .RequiredStatusCheckState.IsWarning)}}yellow
|
{{- else if and .EnableStatusCheck (or (not $.LatestCommitStatus) .RequiredStatusCheckState.IsPending)}}yellow
|
||||||
{{- else if and .AllowMerge .RequireSigned (not .WillSign)}}red
|
{{- else if and .AllowMerge .RequireSigned (not .WillSign)}}red
|
||||||
{{- else if .Issue.PullRequest.IsChecking}}yellow
|
{{- else if .Issue.PullRequest.IsChecking}}yellow
|
||||||
{{- else if .Issue.PullRequest.IsEmpty}}grey
|
{{- else if .Issue.PullRequest.IsEmpty}}grey
|
||||||
|
|
Loading…
Reference in a new issue