Skip to content

Commit

Permalink
Do not run CI when non-source files are changed.
Browse files Browse the repository at this point in the history
Signed-off-by: James R. Perkins <[email protected]>
  • Loading branch information
jamezp committed Feb 28, 2024
1 parent 67bc3d6 commit 8232bcb
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,35 @@ on:
push:
branches-ignore:
- 'dependabot/**'
paths-ignore:
- '.mvn'
- '.gitignore'
- '.gitleaks.toml'
- 'CODE_OF_CONDUCT.md'
- 'CODEOWNERS'
- 'CONTRIBUTING.adoc'
- 'dco.txt'
- 'LICENSE.txt'
- 'mvnw'
- 'mvnw.cmd'
- '**/README.adoc'
- 'SECURITY.md'
pull_request:
branches:
- '**'
paths-ignore:
- '.mvn'
- '.gitignore'
- '.gitleaks.toml'
- 'CODE_OF_CONDUCT.md'
- 'CODEOWNERS'
- 'CONTRIBUTING.adoc'
- 'dco.txt'
- 'LICENSE.txt'
- 'mvnw'
- 'mvnw.cmd'
- '**/README.adoc'
- 'SECURITY.md'

# Only run the latest job
concurrency:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/wildfly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ on:
push:
branches:
- 'main'
paths-ignore:
- '.mvn'
- '.gitignore'
- '.gitleaks.toml'
- 'CODE_OF_CONDUCT.md'
- 'CODEOWNERS'
- 'CONTRIBUTING.adoc'
- 'dco.txt'
- 'LICENSE.txt'
- 'mvnw'
- 'mvnw.cmd'
- '**/README.adoc'
- 'SECURITY.md'
schedule:
- cron: '0 0 * * *' # Every day at 00:00 UTC

Expand Down

0 comments on commit 8232bcb

Please sign in to comment.