Skip to content

Commit db44ca1

Browse files
authored
Build: Don't run CI push workflows for dependabot branches
Without this change, dependabot PRs run double checks - one set for the `push` part and one for the `pull_request` part. Closes gh-499 Ref jquery/jquery#5353
1 parent 3d4d45e commit db44ca1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/node.js.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: CI
22

3-
on: [push, pull_request]
3+
on:
4+
pull_request:
5+
push:
6+
branches-ignore: "dependabot/**"
47

58
jobs:
69
build:

0 commit comments

Comments
 (0)