File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 30
30
contents : read # for actions/checkout to fetch code
31
31
security-events : write # for github/codeql-action/autobuild to send a status report
32
32
packages : read # required to fetch internal or private CodeQL packs
33
-
33
+ if : ${{ github.event_name != 'merge_group' }}
34
34
strategy :
35
35
fail-fast : false
36
36
matrix :
Original file line number Diff line number Diff line change @@ -16,15 +16,13 @@ permissions:
16
16
17
17
jobs :
18
18
dependency-review :
19
+ name : Dependency Review
19
20
runs-on : ubuntu-22.04
20
21
permissions :
21
22
contents : read # for actions/checkout
22
23
pull-requests : write # for actions/dependency-review-action to post comments
24
+ if : ${{ github.event_name != 'merge_group' }}
23
25
steps :
24
- - name : Skip on Merge Group
25
- run : exit 0 # Artifically flag as successful, as this is a required check for branch protection.
26
- if : github.event_name == 'merge_group'
27
-
28
26
- name : Checkout Repository
29
27
uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30
28
You can’t perform that action at this time.
0 commit comments