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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,9 +3,11 @@ on:
push: push:
branches: branches:
- master - master
paths:
- 'gradle/wrapper/gradle-wrapper.jar'
pull_request: pull_request:
paths: paths:
- 'gradle/wrapper/**' - 'gradle/wrapper/gradle-wrapper.jar'
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.ref }} group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true cancel-in-progress: true