From: Michał Gołębiowski-Owczarek Date: Mon, 13 Nov 2023 17:18:20 +0000 (+0100) Subject: Build: Don't run CI push workflows for dependabot branches X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d354a45c3f9b1ad16219b140a3b1609eac15e1ad;p=jquery.git 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-5353 (cherry picked from commit 635cb152e7daac658223455aaab2f81204b5b215) --- diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index a2001ef33..ac787f284 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,6 +1,9 @@ name: CI -on: [push, pull_request] +on: + pull_request: + push: + branches-ignore: "dependabot/**" permissions: contents: read # to fetch code (actions/checkout)