Skip to content

Commit

Permalink
validate dependabot configuration
Browse files Browse the repository at this point in the history
Borrowed from Ubuntu
(ubuntu/authd@3f9df8f)

Sadly, this won't check our existing config unless I make a dummy
update.
  • Loading branch information
geekosaur committed Aug 22, 2024
1 parent a1c94c1 commit 2d397c5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# copied from https://github.com/ubuntu/authd/commit/3f9df8f21d952cd33fd44d3834d0edeec1f5766f

name: Dependabot rules validation

on:
pull_request:
paths:
- '.github/dependabot.yml'

jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: marocchino/validate-dependabot@v3
id: validate

- uses: marocchino/sticky-pull-request-comment@v2
if: always()
with:
header: validate-dependabot
message: ${{ steps.validate.outputs.markdown }}

0 comments on commit 2d397c5

Please sign in to comment.