Skip to content

Commit

Permalink
fix: Gradle wrapper validation trigger issue (#3228)
Browse files Browse the repository at this point in the history
Resolved the Gradle wrapper validation triggering problem by implementing a more precise check. Now, the validation process will only be triggered when there are actual changes in the gradle/wrapper/gradle-wrapper.jar file, preventing unnecessary validations.
  • Loading branch information
Lohita9 authored Jul 29, 2023
1 parent 62b9eed commit 6e5d49b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ on:
push:
branches:
- master
paths:
- 'gradle/wrapper/gradle-wrapper.jar'
pull_request:
paths:
- 'gradle/wrapper/**'
- 'gradle/wrapper/gradle-wrapper.jar'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down

0 comments on commit 6e5d49b

Please sign in to comment.