Skip to content

Commit

Permalink
feat: add priority labels to non-project labels
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo authored Nov 5, 2024
1 parent a79ee3e commit e338f0e
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,26 @@ const TestLabel = "🧪 Test"
const DoneThisWeekLabel = "✅ Done this week"
const NotYetLabel = "⏰ Not yet"
const IssueReferenceLabel = "🔗 Issue reference"
const MustHaveLabel = "Must have"
const ShouldHaveLabel = "Should have"
const CouldHaveLabel = "Could have"

var ProgressLabels = []string{InProgressLabel, DoneThisWeekLabel}
var StatusLabels = []string{ThisWeekLabel, TodayLabel, InProgressLabel, WaitingLabel, InOfficeLabel, DoneThisWeekLabel}
var NonProjectLabels = []string{ThisWeekLabel, TodayLabel, InProgressLabel, WaitingLabel, InOfficeLabel, RecurringLabel, NextActionsLabel, SomewhenLabel, TestLabel, DoneThisWeekLabel, NotYetLabel, IssueReferenceLabel}
var NonProjectLabels = []string{
ThisWeekLabel,
TodayLabel,
InProgressLabel,
WaitingLabel,
InOfficeLabel,
RecurringLabel,
NextActionsLabel,
SomewhenLabel,
TestLabel,
DoneThisWeekLabel,
NotYetLabel,
IssueReferenceLabel,
MustHaveLabel,
ShouldHaveLabel,
CouldHaveLabel,
}

0 comments on commit e338f0e

Please sign in to comment.