Skip to content

Commit

Permalink
fix breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jazanne committed Mar 25, 2024
1 parent 66f5c2d commit 3063c5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comments/comments.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ func githubFlagComment(flag ldapi.FeatureFlag, aliases []string, added, extinct
func infoCellTemplate() string {
return `{{- if eq .Extinct true}} :white_check_mark: all references removed` +
`{{- else if eq .ExtinctionsEnabled true}} :warning: not all references removed {{- end}} ` +
`{{- if eq .Archived true}}{{- if eq .Extinct true}}<br>{{end}}{{- if eq .Added true}} :warning:{{else}} :information_source:{{- end}} archived on {{.ArchivedAt | date "2006-01-02"}} ` +
`{{- else if eq .Deprecated true}}{{- if eq .Extinct true}}<br>{{end}}{{- if eq .Added true}} :warning:{{else}} :information_source:{{- end}} deprecated on {{.DeprecatedAt | date "2006-01-02"}}{{- end}}`
`{{- if eq .Archived true}}{{- if eq .Extinct true}}<br>{{- else if eq .ExtinctionsEnabled true}}<br>{{- end}}{{- if eq .Added true}} :warning:{{else}} :information_source:{{- end}} archived on {{.ArchivedAt | date "2006-01-02"}} ` +
`{{- else if eq .Deprecated true}}{{- if eq .Extinct true}}<br>{{- else if eq .ExtinctionsEnabled true}}<br>{{- end}}{{- if eq .Added true}} :warning:{{else}} :information_source:{{- end}} deprecated on {{.DeprecatedAt | date "2006-01-02"}}{{- end}}`
}

func GithubNoFlagComment() *github.IssueComment {
Expand Down

0 comments on commit 3063c5c

Please sign in to comment.