Skip to content

Commit db1ceac

Browse files
committed
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. Ref jquery/jquery#5353
1 parent 83dc5a2 commit db1ceac

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/node.js.yml

+4-1
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)