2023-05-25 04:31:26 +02:00
|
|
|
{{if .IsPull}}
|
|
|
|
{{if and .PullRequest .PullRequest.HasMerged}}
|
|
|
|
{{svg "octicon-git-merge" 16 "text purple"}}
|
2023-10-03 12:30:41 +02:00
|
|
|
{{else if and (.GetPullRequest ctx) (.GetPullRequest ctx).HasMerged}}
|
2023-05-25 04:31:26 +02:00
|
|
|
{{svg "octicon-git-merge" 16 "text purple"}}
|
|
|
|
{{else}}
|
|
|
|
{{if .IsClosed}}
|
|
|
|
{{svg "octicon-git-pull-request" 16 "text red"}}
|
|
|
|
{{else}}
|
2023-10-11 06:24:07 +02:00
|
|
|
{{if and .PullRequest (.PullRequest.IsWorkInProgress ctx)}}
|
2023-05-25 04:31:26 +02:00
|
|
|
{{svg "octicon-git-pull-request-draft" 16 "text grey"}}
|
2023-10-11 06:24:07 +02:00
|
|
|
{{else if and (.GetPullRequest ctx) ((.GetPullRequest ctx).IsWorkInProgress ctx)}}
|
2023-05-25 04:31:26 +02:00
|
|
|
{{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}}
|