File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,25 @@ jobs:
13
13
name : Release
14
14
runs-on : ubuntu-latest
15
15
permissions :
16
+ checks : read # to wait for required checks
16
17
contents : write # to be able to publish a GitHub release
17
18
issues : write # to be able to comment on released issues
18
19
pull-requests : write # to be able to comment on released pull requests
19
- id-token : write # to enable use of OIDC for npm provenance
20
20
steps :
21
21
- uses : actions/checkout@v4
22
22
with :
23
23
fetch-depth : 0
24
24
25
- # TODO: clean-up once we remove LFS
25
+ # TODO(CG-10743) : clean-up once we remove LFS
26
26
- name : Remove pre-push hook
27
27
run : rm -f .git/hooks/pre-push
28
28
29
+ - name : Wait for required checks
30
+
31
+ with :
32
+ token : ${{ secrets.GITHUB_TOKEN }}
33
+ match_pattern : " (unit-tests|integration-tests)"
34
+
29
35
- uses : codfish/semantic-release-action@v3
30
36
id : semantic
31
37
env :
You can’t perform that action at this time.
0 commit comments