GitHub Actions: limit Template Verify workflow to **/gradle.properties

This commit is contained in:
Jakub Chrzanowski
2022-09-19 11:27:17 +02:00
parent fb31f95d06
commit 93d76063c2

View File

@@ -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: