Skip to content

Commit 2505c08

Browse files
Do Not Run Some Workflows on Dependabot's PRs
Issue gh-13873 (cherry picked from commit 3aae03b)
1 parent 9e877c9 commit 2505c08

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: CI
22

33
on:
4+
pull_request:
5+
branches-ignore:
6+
- "dependabot/**"
47
push:
58
branches-ignore:
69
- "dependabot/**"

.github/workflows/deploy-docs.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
name: Deploy Docs
22
on:
3+
pull_request:
4+
branches-ignore:
5+
- "dependabot/**"
36
push:
4-
branches-ignore: [ "gh-pages", "dependabot/**" ]
7+
branches-ignore:
8+
- "gh-pages"
9+
- "dependabot/**"
510
tags: '**'
611
repository_dispatch:
712
types: request-build-reference # legacy

0 commit comments

Comments
 (0)