Skip to content

Commit c68a703

Browse files
committed
Add dependabot validator workflow
1 parent b772c7c commit c68a703

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: dependabot validate
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- '.github/dependabot.yml'
7+
- '.github/workflows/dependabot-validate.yml'
8+
jobs:
9+
validate:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: marocchino/validate-dependabot@v3
14+
id: validate
15+
- uses: marocchino/sticky-pull-request-comment@v2
16+
if: always()
17+
with:
18+
header: validate-dependabot
19+
message: ${{ steps.validate.outputs.markdown }}

0 commit comments

Comments
 (0)