Skip to content

Commit 9e877c9

Browse files
Do not run some workflows for Dependabot branches
Issue gh-13873 (cherry picked from commit ab812b2)
1 parent adef0f3 commit 9e877c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: CI
22

33
on:
44
push:
5-
branches:
6-
- '**'
5+
branches-ignore:
6+
- "dependabot/**"
77
schedule:
88
- cron: '0 10 * * *' # Once per day at 10am UTC
99
workflow_dispatch: # Manual trigger

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Deploy Docs
22
on:
33
push:
4-
branches-ignore: [ gh-pages ]
4+
branches-ignore: [ "gh-pages", "dependabot/**" ]
55
tags: '**'
66
repository_dispatch:
77
types: request-build-reference # legacy

0 commit comments

Comments
 (0)