Skip to content

Commit

Permalink
ci: avoid dependabot duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
xopham committed Feb 4, 2024
1 parent 56f739e commit e2fd1b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 27 deletions.
26 changes: 1 addition & 25 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,8 @@ updates:
pip-packages:
patterns:
- "*"
- package-ecosystem: "pip"
directory: "/docs"
schedule:
interval: "weekly"
commit-message:
prefix: "update"
insecure-external-code-execution: "deny"
target-branch: "dev"
groups:
pip-packages:
patterns:
- "*"
- package-ecosystem: "pip"
directory: "/tests"
schedule:
interval: "monthly"
commit-message:
prefix: "update"
insecure-external-code-execution: "deny"
target-branch: "dev"
groups:
pip-packages:
patterns:
- "*"
- package-ecosystem: "docker"
directory: "/docker"
directory: "/build"
schedule:
interval: "daily"
commit-message:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/.reusable-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ on:
default: "none"

jobs:
deploy:
docs:
runs-on: ubuntu-latest
if: inputs.skip != 'all'
if: |
(github.actor != 'dependabot[bot]') &&
inputs.skip != 'all'
permissions:
contents: write
steps:
Expand Down

0 comments on commit e2fd1b7

Please sign in to comment.