Skip to content

Commit

Permalink
ci: use action to validate dependabot.yml (gnolang#1642)
Browse files Browse the repository at this point in the history
following [this
comment](gnolang#1628 (comment))
from @kristovatlas

This action seems to only validate the JSON schema. For full validation,
it's on GitHub to provide this -- tracked in this issue:
dependabot/dependabot-core#4605
  • Loading branch information
thehowl authored and leohhhn committed Feb 29, 2024
1 parent 54d561e commit ce0209f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/dependabot-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: dependabot validate

on:
pull_request:
paths:
- '.github/dependabot.yml'
- '.github/workflows/dependabot-validate.yml'
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: marocchino/validate-dependabot@v2

0 comments on commit ce0209f

Please sign in to comment.