Skip to content

Commit

Permalink
Refactor workflow files to trigger on XML file changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkjsix committed Oct 23, 2024
1 parent 024e1bf commit d0eead1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- "*" # Ignore all tags
paths:
- "**/*.java" # Trigger on any Java file change
- "pom.xml" # Trigger on pom.xml file change
- "**/*.xml" # Trigger on any xml file change

jobs:
# Build and test the project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pullrequests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
types: [opened, synchronize, reopened]
paths:
- "**/*.java" # Trigger on any Java file change
- "pom.xml" # Trigger on pom.xml file change
- "**/*.xml" # Trigger on any xml file change

jobs:
build:
Expand Down

0 comments on commit d0eead1

Please sign in to comment.