2023-05-25 08:01:26 +05:30
|
|
|
{{if .IsPull}}
|
|
|
|
{{if and .PullRequest .PullRequest.HasMerged}}
|
|
|
|
{{svg "octicon-git-merge" 16 "text purple"}}
|
2023-10-03 16:00:41 +05:30
|
|
|
{{else if and (.GetPullRequest ctx) (.GetPullRequest ctx).HasMerged}}
|
2023-05-25 08:01:26 +05:30
|
|
|
{{svg "octicon-git-merge" 16 "text purple"}}
|
|
|
|
{{else}}
|
|
|
|
{{if .IsClosed}}
|
|
|
|
{{svg "octicon-git-pull-request" 16 "text red"}}
|
|
|
|
{{else}}
|
2023-10-11 09:54:07 +05:30
|
|
|
{{if and .PullRequest (.PullRequest.IsWorkInProgress ctx)}}
|
2023-05-25 08:01:26 +05:30
|
|
|
{{svg "octicon-git-pull-request-draft" 16 "text grey"}}
|
2023-10-11 09:54:07 +05:30
|
|
|
{{else if and (.GetPullRequest ctx) ((.GetPullRequest ctx).IsWorkInProgress ctx)}}
|
2023-05-25 08:01:26 +05:30
|
|
|
{{svg "octicon-git-pull-request-draft" 16 "text grey"}}
|
|
|
|
{{else}}
|
|
|
|
{{svg "octicon-git-pull-request" 16 "text green"}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
{{if .IsClosed}}
|
|
|
|
{{svg "octicon-issue-closed" 16 "text red"}}
|
|
|
|
{{else}}
|
|
|
|
{{svg "octicon-issue-opened" 16 "text green"}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|