You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your improvement proposal related to a problem? Please describe.
Users are trying to set up webhook notifications specifically for failed tag builds, but these notifications are not triggering as expected. Currently, webhook notifications in the YAML configuration don't support tag-based filtering, making it impossible to create notifications that trigger exclusively for tag builds. This is particularly problematic for users who use tags for production releases and need immediate alerts when tag builds fail.
Describe the solution you'd like
Add support for tag-based filtering in the YAML notification configuration:
notifications:
- name: "Production Release Failures"type: webhookendpoint: "https://example.com/webhook"events:
- pipeline_donefilter:
result: failedtag: "v*"# New: filter by tag pattern
- name: "Tag Build Notifications"type: webhook endpoint: "https://example.com/webhook"events:
- pipeline_donefilter:
result: failedref_type: tag # New: filter by reference type (tag vs branch)tag: "release-*"# New: tag pattern matching
Key features needed:
ref_type field to distinguish between tag and branch builds
tag field for pattern matching on tag names
Ability to exclude branch builds when only tag notifications are desired
Support for wildcards and regex patterns in tag matching
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your improvement proposal related to a problem? Please describe.
Users are trying to set up webhook notifications specifically for failed tag builds, but these notifications are not triggering as expected. Currently, webhook notifications in the YAML configuration don't support tag-based filtering, making it impossible to create notifications that trigger exclusively for tag builds. This is particularly problematic for users who use tags for production releases and need immediate alerts when tag builds fail.
Describe the solution you'd like
Add support for tag-based filtering in the YAML notification configuration:
Key features needed:
ref_type
field to distinguish between tag and branch buildstag
field for pattern matching on tag namesDescribe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: