Skip to content

Commit

Permalink
Merge pull request #5201 from systeminit/feat/dependabot-check-in-ci
Browse files Browse the repository at this point in the history
feat: add dependabot on all pull requests
  • Loading branch information
johnrwatson authored Jan 3, 2025
2 parents da84a96 + c8c8bf6 commit 5558101
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dependency-pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Dependency PR Check

on:
pull_request:
branches:
- '**'

permissions:
contents: read
pull-requests: write

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
with:
comment-summary-in-pr: always
license-check: false

0 comments on commit 5558101

Please sign in to comment.