Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit635cb15

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.Closesgh-5353
1 parentb1e66a5 commit635cb15

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

‎.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 2 deletions
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

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

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp