Skip to content

Commit e1b6bff

Browse files
committed
validate dependabot configuration
Borrowed from Ubuntu (ubuntu/authd@3f9df8f) Sadly, this won't check our existing config unless I make a dummy update.
1 parent fb2ac8c commit e1b6bff

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ updates:
1313
schedule:
1414
# Check for updates to GitHub Actions every week
1515
interval: "weekly"
16+

.github/workflows/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# copied from https://github.com/ubuntu/authd/commit/3f9df8f21d952cd33fd44d3834d0edeec1f5766f
2+
3+
name: Dependabot rules validation
4+
5+
on:
6+
pull_request:
7+
paths:
8+
- '.github/dependabot.yml'
9+
10+
jobs:
11+
validate:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: marocchino/validate-dependabot@v3
17+
id: validate

0 commit comments

Comments
 (0)