You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Only report issues introduced by this PR (on changed lines), not
88
+
# pre-existing issues in files the PR didn't touch. Uses the PR patch
89
+
# from the GitHub API, so no extra git history is needed.
90
+
only-new-issues: true
91
+
54
92
# disable, as it randomly fails with the following error:
55
93
# The command is terminated due to an error: [../../.golangci.yml] validate: compile schema: failing loading "https://golangci-lint.run/jsonschema/golangci.v2.11.jsonschema.json": Get "https://golangci-lint.run/jsonschema/golangci.v2.11.jsonschema.json": context deadline exceeded (Client.Timeout exceeded while awaiting headers)
56
94
verify: 'false'
@@ -75,7 +113,8 @@ jobs:
75
113
exit 1
76
114
fi
77
115
78
-
if [[ "${{ needs.golangci-lint.result }}" != "success" ]]; then
116
+
# "skipped" is expected when no Go modules changed (empty matrix).
117
+
if [[ "${{ needs.golangci-lint.result }}" != "success" && "${{ needs.golangci-lint.result }}" != "skipped" ]]; then
0 commit comments