add all filters to config file so we verify they can be parsed
fix: add missing event filters for tag events
Add event filters TagCreated, TagUpdated, and TagDeleted. These were supposed to already exist, but were never committed. They’re in the documentation, though, so it’s quite surprising that they don’t work.
test: add scenario that uses all event filters in config file
This makes it more obvious if we miss support for a filter.
2 files changed
+62
-2
aa70e645
→
acd3dd06
modified ci-broker.md
@@ -77,6 +77,45 @@ triggers:
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -396,8 +435,8 @@ output is in the JSON format. It does not try to make sure the JSON
|
|
|
|
|
|
| - | |
| - | |
| + | |
| + | |
|
|
|
|
|
modified src/filter.rs
@@ -80,6 +80,15 @@ pub enum EventFilter {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -206,6 +215,18 @@ impl EventFilter {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|