Skip to content

Commit

Permalink
validate dependabot, update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bomgar committed Aug 10, 2023
1 parent baf0d30 commit f6225c6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
groups:
all-dependencies:
all-dependencies-cargo:
patterns:
- "*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
all-dependencies-actions:
patterns:
- "*"
19 changes: 19 additions & 0 deletions .github/workflows/dependabot-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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
id: validate
- uses: marocchino/sticky-pull-request-comment@v2
if: always()
with:
header: validate-dependabot
message: ${{ steps.validate.outputs.markdown }}

0 comments on commit f6225c6

Please sign in to comment.