X Tutup
Skip to content

Commit 9e6954c

Browse files
authored
Merge pull request #2110 from EliahKagan/pre-commit-infra
Improve CI infrastructure for pre-commit
2 parents e23c548 + 35db809 commit 9e6954c

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
version: 2
2+
enable-beta-ecosystems: true
23
updates:
3-
- package-ecosystem: "github-actions"
4+
- package-ecosystem: github-actions
45
directory: "/"
56
schedule:
6-
interval: "weekly"
7+
interval: weekly
78

8-
- package-ecosystem: "gitsubmodule"
9+
- package-ecosystem: gitsubmodule
910
directory: "/"
1011
schedule:
11-
interval: "weekly"
12+
interval: weekly
13+
14+
- package-ecosystem: pre-commit
15+
directory: "/"
16+
schedule:
17+
interval: monthly
18+
groups:
19+
pre-commit:
20+
patterns: ["*"]

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77

88
jobs:
99
lint:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-slim
1111

1212
steps:
1313
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)
X Tutup