From 8c088455f80815068f3538cdacd321f47254d6b3 Mon Sep 17 00:00:00 2001 From: Papa Bakary Camara Date: Mon, 19 Feb 2024 11:51:22 +0100 Subject: [PATCH] Only report new issues in golangci-lint github action --- .github/workflows/golangci-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 521c3b68..41247724 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -29,9 +29,9 @@ jobs: # Optional: golangci-lint command line arguments. # args: --issues-exit-code=0 args: --timeout=3m - + # Optional: show only new issues if it's a pull request. The default value is `false`. - # only-new-issues: true + only-new-issues: true # Optional: if set to true then the action will use pre-installed Go. # skip-go-installation: true