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": { "mapping": {
"properties": { "properties": {
"types": "merge-group-activity", "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 - deleted
merge_group: merge_group:
branches: branches:
- master - master
- main - main
branches-ignore:
- develop
types: types:
- checks_requested - checks_requested
milestone: milestone:
@@ -321,6 +323,9 @@ jobs:
"master", "master",
"main" "main"
], ],
"branches-ignore": [
"develop"
],
"types": [ "types": [
"checks_requested" "checks_requested"
] ]