fix: Gradle wrapper validation trigger issue (#3228)

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.
This commit is contained in:
ArjunaKumarMohanta
2023-07-29 15:32:19 +05:30
committed by GitHub
parent 62b9eedb9e
commit 6e5d49bd66

View File

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