Merge pull request #25 from actions/lrotschy/add-branches-ignore-to-merge-group-schema

Add branches-ignore to merge group schema
This commit is contained in:
Liela Rotschy
2023-04-19 14:38:04 -06:00
committed by GitHub
2 changed files with 9 additions and 3 deletions
+2 -1
View File
@@ -577,7 +577,8 @@
"mapping": {
"properties": {
"types": "merge-group-activity",
"branches": "event-branches"
"branches": "event-branches",
"branches-ignore": "event-branches-ignore"
}
}
},
+7 -2
View File
@@ -73,8 +73,10 @@ on:
- deleted
merge_group:
branches:
- master
- main
- master
- main
branches-ignore:
- develop
types:
- checks_requested
milestone:
@@ -321,6 +323,9 @@ jobs:
"master",
"main"
],
"branches-ignore": [
"develop"
],
"types": [
"checks_requested"
]