-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to validate dependabot config (#5556)
## Which problem is this PR solving? - Per title ## Description of the changes - new workflow - fix existing breaks in the config ## How was this change tested? - CI --------- Signed-off-by: Yuri Shkuro <[email protected]>
- Loading branch information
1 parent
70e8239
commit 6f2fe36
Showing
2 changed files
with
30 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: dependabot validate | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/dependabot.yml' | ||
- '.github/workflows/validate-dependabot-config.yml' | ||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: marocchino/validate-dependabot@v3 | ||
id: validate |