Skip to content

Commit e338f0e

Browse files
authored
feat: add priority labels to non-project labels
1 parent a79ee3e commit e338f0e

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

constants/constants.go

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,26 @@ const TestLabel = "🧪 Test"
2222
const DoneThisWeekLabel = "✅ Done this week"
2323
const NotYetLabel = "⏰ Not yet"
2424
const IssueReferenceLabel = "🔗 Issue reference"
25+
const MustHaveLabel = "Must have"
26+
const ShouldHaveLabel = "Should have"
27+
const CouldHaveLabel = "Could have"
2528

2629
var ProgressLabels = []string{InProgressLabel, DoneThisWeekLabel}
2730
var StatusLabels = []string{ThisWeekLabel, TodayLabel, InProgressLabel, WaitingLabel, InOfficeLabel, DoneThisWeekLabel}
28-
var NonProjectLabels = []string{ThisWeekLabel, TodayLabel, InProgressLabel, WaitingLabel, InOfficeLabel, RecurringLabel, NextActionsLabel, SomewhenLabel, TestLabel, DoneThisWeekLabel, NotYetLabel, IssueReferenceLabel}
31+
var NonProjectLabels = []string{
32+
ThisWeekLabel,
33+
TodayLabel,
34+
InProgressLabel,
35+
WaitingLabel,
36+
InOfficeLabel,
37+
RecurringLabel,
38+
NextActionsLabel,
39+
SomewhenLabel,
40+
TestLabel,
41+
DoneThisWeekLabel,
42+
NotYetLabel,
43+
IssueReferenceLabel,
44+
MustHaveLabel,
45+
ShouldHaveLabel,
46+
CouldHaveLabel,
47+
}

0 commit comments

Comments
 (0)