Skip to content

Commit

Permalink
Mute dependabot, the project isn't ready for automated NPM updates (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mkuthan authored Oct 6, 2023
1 parent e3f5c8e commit b8d99b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 28 deletions.
8 changes: 0 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,3 @@ updates:
directory: "/docs"
schedule:
interval: "weekly"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
allow:
- dependency-name: "cypress"
- dependency-name: "plywood*"
16 changes: 0 additions & 16 deletions .github/workflows/dependabot.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
deploy:
runs-on: ubuntu-latest

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

env:
TAG_NAME: ${{ github.head_ref || 'latest' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/undeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
undeploy:
runs-on: ubuntu-latest

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

env:
TAG_NAME: ${{ github.head_ref }}
Expand Down

0 comments on commit b8d99b8

Please sign in to comment.