Skip to content

Commit 1ceccc6

Browse files
committed
fix: skip validate pr for dependabot
1 parent 78f0c6e commit 1ceccc6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/validate-pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ name: pr-validation
22

33
on:
44
pull_request:
5-
types: [opened, reopened, edited]
5+
types: [opened, reopened, edited, labeled, unlabeled]
66
# only applies to PRs that want to merge to main
77
branches: [main, 252-patch]
88

99
jobs:
1010
pr-validation:
11+
if: ${{ !contains(github.event.pull_request.labels.*.name, 'dependencies') }}
1112
uses: salesforcecli/github-workflows/.github/workflows/validatePR.yml@main

0 commit comments

Comments
 (0)