Skip to content

Commit 7507411

Browse files
authored
ci: manage pre-commit hook updates with Dependabot (#1609)
## Summary - add a monthly Dependabot job for `.pre-commit-config.yaml` hook updates - request `@nv-legate/devops-reviewers` on both GitHub Actions and pre-commit Dependabot PRs - remove the stale `pre-commit.ci` autoupdate stanza from `.pre-commit-config.yaml` - align pre-commit dependency automation with `legate.internal` Refs nv-legate/legate.internal#3640
1 parent cdc8739 commit 7507411

2 files changed

Lines changed: 16 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,25 @@ updates:
1010
schedule:
1111
# Check for updates to GitHub Actions every week
1212
interval: "weekly"
13+
reviewers:
14+
- "nv-legate/devops-reviewers"
1315
labels:
1416
- CI
1517
groups:
1618
gha-all:
1719
patterns:
1820
- "*"
21+
22+
- package-ecosystem: "pre-commit"
23+
directory: "/"
24+
schedule:
25+
# Check for updates to pre-commit hooks every month
26+
interval: "monthly"
27+
reviewers:
28+
- "nv-legate/devops-reviewers"
29+
labels:
30+
- CI
31+
groups:
32+
pre-commit-all:
33+
patterns:
34+
- "*"

.pre-commit-config.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,5 @@ repos:
5656
stages: [pre-commit]
5757
exclude: '^src/cupynumeric/cupynumeric_c\.h$'
5858

59-
ci:
60-
autoupdate_schedule: quarterly
61-
6259
default_language_version:
6360
python: python3

0 commit comments

Comments
 (0)