Skip to content

Commit 635cb15

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-5353
1 parent b1e66a5 commit 635cb15

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/codeql-analysis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: "Code scanning - action"
22

33
on:
4-
push:
54
pull_request:
5+
push:
6+
branches-ignore: "dependabot/**"
67
schedule:
78
- cron: '0 4 * * 6'
89

@@ -30,7 +31,7 @@ jobs:
3031
# the head of the pull request instead of the merge commit.
3132
- run: git checkout HEAD^2
3233
if: ${{ github.event_name == 'pull_request' }}
33-
34+
3435
# Initializes the CodeQL tools for scanning.
3536
- name: Initialize CodeQL
3637
uses: github/codeql-action/init@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5

.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
permissions:
69
contents: read # to fetch code (actions/checkout)

0 commit comments

Comments
 (0)