File tree 2 files changed +13
-4
lines changed
2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -43,13 +43,13 @@ github:
43
43
rebase : false
44
44
protected_branches :
45
45
main :
46
- # required_status_checks:
46
+ required_status_checks :
47
47
# # strict means "Require branches to be up to date before merging".
48
- # strict: false
48
+ strict : false
49
49
# # Contexts are the names of checks that must pass.
50
50
# # See ./github/workflows/README.md for more documentation on this list.
51
- # contexts:
52
- # - Pulsar CI checks completed
51
+ contexts :
52
+ - Check Completion
53
53
54
54
required_pull_request_reviews :
55
55
dismiss_stale_reviews : false
Original file line number Diff line number Diff line change @@ -154,3 +154,12 @@ jobs:
154
154
155
155
- name : Build and test Mac wheels
156
156
run : pkg/mac/build-mac-wheels.sh ${{matrix.py.version}}
157
+
158
+ # Job that will be required to complete and depends on all the other jobs
159
+ check-completion :
160
+ name : Check Completion
161
+ runs-on : ubuntu-latest
162
+ needs : [unit-tests, linux-wheel, mac-wheels]
163
+
164
+ steps :
165
+ - run : true
You can’t perform that action at this time.
0 commit comments