From bf2e3623df73838a96f8279b1e49458fb1b698c6 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 20 Aug 2022 16:25:34 -0700 Subject: [PATCH] Do not run go linter on web-only changes --- .github/workflows/go-lint.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index da4614e5d..adce3701c 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -1,7 +1,14 @@ name: lint on: push: + paths-ignore: + - 'webroot/**' + - 'web/**' + pull_request: + paths-ignore: + - 'webroot/**' + - 'web/**' permissions: contents: read