Skip to content

Commit be1cfc4

Browse files
authored
fix triggering for "Validate Gradle Wrapper" pipeline (#24181)
### Description currently it is triggered on every branch.
1 parent 32b376c commit be1cfc4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
# This workflow was copied from the link above.
44

55
name: "Validate Gradle Wrapper"
6-
on: [push, pull_request]
6+
on:
7+
push:
8+
branches: [ main, 'rel-*']
9+
pull_request:
10+
branches: [ main, 'rel-*']
711

812
jobs:
913
validation:

0 commit comments

Comments
 (0)