61
61
# The location of the configuration file can be changed by using `--config=`
62
62
# args: --timeout=30m --config=/my/path/.golangci.yml --issues-exit-code=0
63
63
64
- # Optional: For pull request only, show only new issues. The default value is `false`.
64
+ # Optional: Show only new issues.
65
+ # If you are using `merge_group` event (merge queue) you should add the option `fetch-depth: 0` to `actions/checkout` step.
66
+ # The default value is `false`.
65
67
# only-new-issues: true
66
68
67
69
# Optional: if set to true, then all caching functionality will be completely disabled,
@@ -104,7 +106,7 @@ jobs:
104
106
strategy :
105
107
matrix :
106
108
go : ['1.21']
107
- os : [macos-latest, windows-latest]
109
+ os : [ubuntu-latest, macos-latest, windows-latest]
108
110
name : lint
109
111
runs-on : ${{ matrix.os }}
110
112
steps :
@@ -129,7 +131,9 @@ jobs:
129
131
# The location of the configuration file can be changed by using `--config=`
130
132
# args: --timeout=30m --config=/my/path/.golangci.yml --issues-exit-code=0
131
133
132
- # Optional: For pull request only, show only new issues. The default value is `false`.
134
+ # Optional: Show only new issues.
135
+ # If you are using `merge_group` event (merge queue) you should add the option `fetch-depth: 0` to `actions/checkout` step.
136
+ # The default value is `false`.
133
137
# only-new-issues: true
134
138
135
139
# Optional: if set to true, then all caching functionality will be completely disabled,
0 commit comments