Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions semaphore/notifications.v1alpha.proto
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,16 @@ message Notification {
// List of results to trigger this rule.
// Default: every result.
repeated string results = 6;

// List of tags to trigger this rule.
// Default: all tags.
//
// Examples:
// - "v1.0.0" - strictly match the v1.0.0 tag
// - "/^v\\d+\\.\\d+\\.\\d+$/" - regex matches semantic version tags
// - "release-*" - wildcard match for tags starting with 'release-'
//
repeated string tags = 7;
}

message Notify {
Expand Down