From f51fbec16fce4359832f3092bd8f6fdf12f16151 Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Thu, 3 Apr 2025 19:18:50 -0700 Subject: [PATCH] docs: add note about github.workspace (#1218) Co-authored-by: Fernandez Ludovic --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5dd431d..43023bc 100644 --- a/README.md +++ b/README.md @@ -400,6 +400,8 @@ The location of the configuration file can be changed by using `--config=` ```yml uses: golangci/golangci-lint-action@v7 with: + # In some rare cases, + # you could have to use `${{ github.workspace }}` as base directory to reference your configuration file. args: --config=/my/path/.golangci.yml --issues-exit-code=0 # ... ```