File tree Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 7
7
- main
8
8
- master
9
9
pull_request :
10
- merge_group :
11
10
12
11
defaults :
13
12
run :
50
49
51
50
- name : Upload SARIF file
52
51
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'
53
54
with :
54
55
name : results.sarif
55
56
path : results.sarif
66
67
if : >
67
68
always() &&
68
69
!contains(fromJSON('["cancelled", "skipped"]'), needs.workflow_syntax.result) &&
69
- !github.event.repository.private
70
+ !github.event.repository.private &&
71
+ github.event_name != 'merge_group'
70
72
runs-on : ubuntu-latest
71
73
permissions :
72
74
contents : read
79
81
path : results.sarif
80
82
81
83
- name : Upload SARIF file
82
- uses : github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
84
+ uses : github/codeql-action/upload-sarif@fc7e4a0fa01c3cca5fd6a1fddec5c0740c977aa2 # v3.28.14
83
85
with :
84
86
sarif_file : results.sarif
85
87
category : zizmor
Original file line number Diff line number Diff line change 1
1
# This file is synced from `Homebrew/brew` by the `.github` repository, do not modify it directly.
2
2
---
3
- plugins :
4
- - rubocop-md :
5
- plugin_class_name : RuboCop::Markdown::Plugin
6
- - rubocop-performance :
7
- plugin_class_name : RuboCop::Performance::Plugin
8
- - rubocop-rspec :
9
- plugin_class_name : RuboCop::RSpec::Plugin
10
- - rubocop-sorbet :
11
- plugin_class_name : RuboCop::Sorbet::Plugin
12
3
AllCops :
13
4
ParserEngine : parser_prism
14
5
TargetRubyVersion : 3.3
You can’t perform that action at this time.
0 commit comments