Skip to content

Commit 789f114

Browse files
authored
feat: rewrite format handling (#1038)
1 parent d36b91c commit 789f114

File tree

6 files changed

+87
-39
lines changed

6 files changed

+87
-39
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The action runs [golangci-lint](https://github.com/golangci/golangci-lint) and r
1010

1111
## Compatibility
1212

13+
* `v6.0.0+` removes `annotations` option.
1314
* `v5.0.0+` removes `skip-pkg-cache` and `skip-build-cache` because the cache related to Go itself is already handled by `actions/setup-go`.
1415
* `v4.0.0+` requires an explicit `actions/setup-go` installation step before using this action: `uses: actions/setup-go@v5`.
1516
The `skip-go-installation` option has been removed.
@@ -212,23 +213,24 @@ with:
212213

213214
If set the number is `<= 0`, the cache will be always invalidate (Not recommended).
214215

215-
### `annotations`
216+
### `problem-matchers`
216217

217218
(optional)
218219

219-
To enable/disable GitHub Action annotations.
220+
Force the usage of the embedded problem matchers.
220221

221-
If disabled (`false`), the output format(s) will follow the golangci-lint configuration file (or CLI flags from `args`)
222-
and use the same default as golangci-lint (i.e. `colored-line-number`).
222+
By default, the [problem matcher of Go (`actions/setup-go`)](https://github.com/actions/setup-go/blob/main/matchers.json) already handles the golangci-lint output (`colored-line-number`).
223+
224+
Works only with `colored-line-number` (the golangci-lint default).
223225

224226
https://golangci-lint.run/usage/configuration/#output-configuration
225227

226-
The default value is `true`.
228+
The default value is `false`.
227229

228230
```yml
229231
uses: golangci/golangci-lint-action@v5
230232
with:
231-
annotations: false
233+
problem-matchers: true
232234
# ...
233235
```
234236

action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ inputs:
3636
restore existing caches, subject to other options.
3737
default: 'false'
3838
required: false
39-
annotations:
40-
description: "To Enable/disable GitHub Action annotations"
41-
default: 'true'
39+
problem-matchers:
40+
description: "Force the usage of the embedded problem matchers"
41+
default: 'false'
4242
required: false
4343
args:
4444
description: "golangci-lint command line arguments"

dist/post_run/index.js

+19-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/run/index.js

+19-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

problem-matchers.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"problemMatcher": [
3+
{
4+
"owner": "golangci-lint-colored-line-number",
5+
"severity": "error",
6+
"pattern": [
7+
{
8+
"regexp": "^([^:]+):(\\d+):(?:(\\d+):)?\\s+(.+ \\(.+\\))$",
9+
"file": 1,
10+
"line": 2,
11+
"column": 3,
12+
"message": 4
13+
}
14+
]
15+
}
16+
]
17+
}

src/run.ts

+21-10
Original file line numberDiff line numberDiff line change
@@ -185,21 +185,32 @@ async function runLint(lintPath: string, patchPath: string): Promise<void> {
185185
const userArgsMap = new Map<string, string>(userArgsList)
186186
const userArgNames = new Set<string>(userArgsList.map(([key]) => key))
187187

188-
const annotations = core.getBooleanInput(`annotations`)
188+
const problemMatchers = core.getBooleanInput(`problem-matchers`)
189+
190+
if (problemMatchers) {
191+
const matchersPath = path.join(__dirname, "../..", "problem-matchers.json")
192+
if (fs.existsSync(matchersPath)) {
193+
// Adds problem matchers.
194+
// https://github.com/actions/setup-go/blob/cdcb36043654635271a94b9a6d1392de5bb323a7/src/main.ts#L81-L83
195+
core.info(`##[add-matcher]${matchersPath}`)
196+
}
197+
}
189198

190-
if (annotations) {
191-
const formats = (userArgsMap.get("out-format") || "")
192-
.trim()
193-
.split(",")
194-
.filter((f) => f.length > 0)
195-
.filter((f) => !f.startsWith(`github-actions`))
196-
.concat("github-actions")
197-
.join(",")
199+
const formats = (userArgsMap.get("out-format") || "")
200+
.trim()
201+
.split(",")
202+
.filter((f) => f.length > 0)
203+
.filter((f) => !f.startsWith(`github-actions`)) // Removes `github-actions` format.
204+
.join(",")
198205

206+
if (formats) {
207+
// Adds formats but without `github-actions` format.
199208
addedArgs.push(`--out-format=${formats}`)
200-
userArgs = userArgs.replace(/--out-format=\S*/gi, "").trim()
201209
}
202210

211+
// Removes `--out-format` from the user flags because it's already inside `addedArgs`.
212+
userArgs = userArgs.replace(/--out-format=\S*/gi, "").trim()
213+
203214
if (isOnlyNewIssues()) {
204215
if (userArgNames.has(`new`) || userArgNames.has(`new-from-rev`) || userArgNames.has(`new-from-patch`)) {
205216
throw new Error(`please, don't specify manually --new* args when requesting only new issues`)

0 commit comments

Comments
 (0)