Skip to content

Commit

Permalink
feat: add dependency checking on all pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrwatson committed Jan 3, 2025
1 parent 932628d commit c8c8bf6
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 c8c8bf6

Please sign in to comment.