We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c065d9 commit 555a028Copy full SHA for 555a028
.github/workflows/actionlint.yml
@@ -7,7 +7,6 @@ on:
7
- main
8
- master
9
pull_request:
10
- merge_group:
11
12
defaults:
13
run:
@@ -50,6 +49,8 @@ jobs:
50
49
51
- name: Upload SARIF file
52
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
+ # 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'
54
with:
55
name: results.sarif
56
path: results.sarif
@@ -66,7 +67,8 @@ jobs:
66
67
if: >
68
always() &&
69
!contains(fromJSON('["cancelled", "skipped"]'), needs.workflow_syntax.result) &&
- !github.event.repository.private
70
+ !github.event.repository.private &&
71
+ github.event_name != 'merge_group'
72
runs-on: ubuntu-latest
73
permissions:
74
contents: read
0 commit comments