From 93d76063c2588679b6820b227a66ac990ed315ed Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 19 Sep 2022 11:27:17 +0200 Subject: [PATCH] GitHub Actions: limit Template Verify workflow to `**/gradle.properties` --- .github/workflows/template-verify.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/template-verify.yml b/.github/workflows/template-verify.yml index 89f4b79..c35e60e 100644 --- a/.github/workflows/template-verify.yml +++ b/.github/workflows/template-verify.yml @@ -5,8 +5,10 @@ on: # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests) push: branches: [main] + paths: ['**/gradle.properties'] # Trigger the workflow on any pull request pull_request: + paths: ['**/gradle.properties'] jobs: