-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathconsts.go
27 lines (23 loc) · 936 Bytes
/
consts.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package replication
const (
// FilterItemKindProject : Kind of filter item is 'project'
FilterItemKindProject = "project"
// FilterItemKindRepository : Kind of filter item is 'repository'
FilterItemKindRepository = "repository"
// FilterItemKindTag : Kind of filter item is 'tag'
FilterItemKindTag = "tag"
// FilterItemKindLabel : Kind of filter item is 'label'
FilterItemKindLabel = "label"
// AdaptorKindHarbor : Kind of adaptor of Harbor
AdaptorKindHarbor = "Harbor"
// TriggerKindImmediate : Kind of trigger is 'Immediate'
TriggerKindImmediate = "Immediate"
// TriggerKindSchedule : Kind of trigger is 'Scheduled'
TriggerKindSchedule = "Scheduled"
// TriggerKindManual : Kind of trigger is 'Manual'
TriggerKindManual = "Manual"
// TriggerScheduleDaily : type of scheduling is 'Daily'
TriggerScheduleDaily = "Daily"
// TriggerScheduleWeekly : type of scheduling is 'Weekly'
TriggerScheduleWeekly = "Weekly"
)