From 5d282b162792ab9a9edb148ca45caa0cb6a5d8fb Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Sun, 11 Jan 2026 12:10:19 -0600 Subject: [PATCH] Add workflow to validate dependabot.yml --- .github/workflows/validate-dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/validate-dependabot.yml diff --git a/.github/workflows/validate-dependabot.yml b/.github/workflows/validate-dependabot.yml new file mode 100644 index 0000000..b73a564 --- /dev/null +++ b/.github/workflows/validate-dependabot.yml @@ -0,0 +1,20 @@ +name: Validate dependabot.yml + +on: + pull_request: + paths: + - .github/dependabot.yml + - .github/workflows/validate-dependabot.yml + push: + branches: [main] # <-- or whatever your default branch is + workflow_dispatch: + +jobs: + validate-dependabot: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: softwareforgood/validate-dependabot.yml@v0