Skip to content

Commit b8d99b8

Browse files
authored
Mute dependabot, the project isn't ready for automated NPM updates (#1091)
1 parent e3f5c8e commit b8d99b8

File tree

4 files changed

+4
-28
lines changed

4 files changed

+4
-28
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,3 @@ updates:
99
directory: "/docs"
1010
schedule:
1111
interval: "weekly"
12-
13-
- package-ecosystem: "npm"
14-
directory: "/"
15-
schedule:
16-
interval: "weekly"
17-
allow:
18-
- dependency-name: "cypress"
19-
- dependency-name: "plywood*"

.github/workflows/dependabot.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010

11-
# disable for PRs from forks
12-
if: ${{ !github.event.pull_request.head.repo.fork }}
11+
# disable for PRs from forks and Dependabot
12+
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
1313

1414
env:
1515
TAG_NAME: ${{ github.head_ref || 'latest' }}

.github/workflows/undeploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
undeploy:
1010
runs-on: ubuntu-latest
1111

12-
# disable for PRs from forks
13-
if: ${{ !github.event.pull_request.head.repo.fork }}
12+
# disable for PRs from forks and Dependabot
13+
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
1414

1515
env:
1616
TAG_NAME: ${{ github.head_ref }}

0 commit comments

Comments
 (0)