Skip to content

Commit

Permalink
Build: Don't run CI push workflows for dependabot branches
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mgol committed Feb 12, 2024
1 parent 3d4d45e commit db44ca1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/node.js.yml
@@ -1,6 +1,9 @@
name: CI

on: [push, pull_request]
on:
pull_request:
push:
branches-ignore: "dependabot/**"

jobs:
build:
Expand Down

0 comments on commit db44ca1

Please sign in to comment.