Skip to content

Commit

Permalink
feat(CI): Added Dependency Review workflow to analyze dependency chan…
Browse files Browse the repository at this point in the history
…ges in PRs
  • Loading branch information
SaptarshiSarkar12 committed Apr 17, 2024
1 parent a7c1ed2 commit 584f2f9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Dependency Review'

on:
pull_request:

permissions:
contents: read
pull-requests: write

jobs:
dependency-review:
name: Dependency Review
runs-on: 'ubuntu-latest'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Dependency Review
uses: actions/dependency-review-action@v4
with:
fail-on-scopes: development, runtime
comment-summary-in-pr: on-failure
retry-on-snapshot-warnings: true

0 comments on commit 584f2f9

Please sign in to comment.