From 4c2464a7d7d4630d8fc34730ff1fe4ddef04228b Mon Sep 17 00:00:00 2001 From: Jon Langevin Date: Tue, 19 May 2026 14:21:42 -0400 Subject: [PATCH] docs(auth): prefix CONTRIBUTING commands with GOWORK=off Follow-up to workflow#721. Multi-repo workspace go.work short-circuits plugin builds unless GOWORK=off is set. Co-Authored-By: Claude Opus 4.7 (1M context) --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1b64f75..b96b855 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,8 +20,8 @@ wfctl plugin install workflow-plugin-auth ```sh git clone https://github.com/GoCodeAlone/workflow-plugin-auth.git cd workflow-plugin-auth -go build ./... -go test ./... +GOWORK=off go build ./... +GOWORK=off go test ./... ``` ## Pull requests @@ -29,7 +29,7 @@ go test ./... - One feature or bugfix per PR. - Update CHANGELOG.md with a Keep-a-Changelog entry. - Add tests covering new behavior. -- Run `go vet ./...` before pushing. +- Run `GOWORK=off go vet ./...` before pushing. ## Reporting issues