Skip to content

Commit 555a028

Browse files
committed
actionlint.yml: update to match main configuration
1 parent 8c065d9 commit 555a028

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/actionlint.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
- main
88
- master
99
pull_request:
10-
merge_group:
1110

1211
defaults:
1312
run:
@@ -50,6 +49,8 @@ jobs:
5049

5150
- name: Upload SARIF file
5251
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
52+
# We can't use the SARIF file when triggered by `merge_group` so we don't upload it.
53+
if: always() && github.event_name != 'merge_group'
5354
with:
5455
name: results.sarif
5556
path: results.sarif
@@ -66,7 +67,8 @@ jobs:
6667
if: >
6768
always() &&
6869
!contains(fromJSON('["cancelled", "skipped"]'), needs.workflow_syntax.result) &&
69-
!github.event.repository.private
70+
!github.event.repository.private &&
71+
github.event_name != 'merge_group'
7072
runs-on: ubuntu-latest
7173
permissions:
7274
contents: read

0 commit comments

Comments
 (0)