Skip to content

Commit c3793d7

Browse files
charmcligithub-actions[bot]
authored andcommitted
ci: sync dependabot config
1 parent 1e6353e commit c3793d7

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

.github/dependabot.yml

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,41 @@
11
version: 2
2+
23
updates:
34
- package-ecosystem: "gomod"
45
directory: "/"
56
schedule:
6-
interval: "daily"
7+
interval: "weekly"
8+
day: "monday"
9+
time: "05:00"
10+
timezone: "America/New_York"
711
labels:
812
- "dependencies"
913
commit-message:
10-
prefix: "feat"
14+
prefix: "chore"
1115
include: "scope"
16+
1217
- package-ecosystem: "github-actions"
1318
directory: "/"
1419
schedule:
15-
interval: "daily"
20+
interval: "weekly"
21+
day: "monday"
22+
time: "05:00"
23+
timezone: "America/New_York"
1624
labels:
1725
- "dependencies"
1826
commit-message:
1927
prefix: "chore"
2028
include: "scope"
29+
2130
- package-ecosystem: "docker"
2231
directory: "/"
2332
schedule:
24-
interval: "daily"
33+
interval: "weekly"
34+
day: "monday"
35+
time: "05:00"
36+
timezone: "America/New_York"
2537
labels:
2638
- "dependencies"
2739
commit-message:
2840
prefix: "feat"
29-
include: "scope"
41+
include: "scope"

.github/workflows/dependabot-sync.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: dependabot-sync
2+
on:
3+
schedule:
4+
- cron: "0 0 * * 0" # every Sunday at midnight
5+
workflow_dispatch: # allows manual triggering
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
11+
jobs:
12+
dependabot-sync:
13+
uses: charmbracelet/meta/.github/workflows/dependabot-sync.yml@main
14+
with:
15+
repo_name: ${{ github.event.repository.name }}

0 commit comments

Comments
 (0)