Don't run tests on changes to .github/*
If a PR is only touching files in the .github directory, there's no need to run tests on the app
This commit is contained in:
parent
a8ba3aa9c1
commit
3bb19838a4
|
@ -4,6 +4,8 @@ on:
|
||||||
pull_request: { }
|
pull_request: { }
|
||||||
push:
|
push:
|
||||||
branches: [ main, develop ]
|
branches: [ main, develop ]
|
||||||
|
paths-ignore:
|
||||||
|
- '.github/**'
|
||||||
|
|
||||||
# Enrich gradle.properties for CI/CD
|
# Enrich gradle.properties for CI/CD
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue