We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b85ff8 commit e42b604Copy full SHA for e42b604
.github/workflows/ready-label-check.yaml
@@ -1,13 +1,17 @@
1
name: Check Ready Label
2
-
+# https://stackoverflow.com/a/71504928/29403906
3
on:
4
pull_request:
5
- branches:
6
- - main
+ branches: [ main , 'release/*' ]
+ types:
7
+ - opened
8
+ - labeled
9
+ - unlabeled
10
+
11
12
jobs:
13
check-ready-label:
- if: !contains(github.event.pull_request.labels.*.name, 'ready')
14
+ if: "!contains(github.event.pull_request.labels.*.name, 'ready')"
15
runs-on: ubuntu-latest
16
steps:
17
- name: Fail if ready label has not been applied to PR
0 commit comments