File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 30
30
timeout-minutes : 10
31
31
32
32
steps :
33
+ # Check that the PR is not awaiting changes from the author due to previous review.
33
34
- name : Check there's no required changes
34
35
uses : mheap/github-action-required-labels@v5
35
36
with :
@@ -39,14 +40,15 @@ jobs:
39
40
awaiting changes
40
41
awaiting change review
41
42
- id : is-feature
42
- name : Check for type-feature
43
+ name : Check whether this PR is a feature (contains a " type-feature" label)
43
44
uses : mheap/github-action-required-labels@v5
44
45
with :
45
46
mode : exactly
46
47
count : 1
47
48
labels : |
48
49
type-feature
49
- exit_type : success
50
+ exit_type : success # don't fail the check if the PR is not a feature, just record the result
51
+ # In case of a feature PR, check for a complete review (contains an "awaiting merge" label).
50
52
- id : awaiting-merge
51
53
if : steps.is-feature.outputs.status == 'success'
52
54
name : Check for complete review
You can’t perform that action at this time.
0 commit comments