Skip to content

Commit a4e844e

Browse files
authored
Merge pull request #158 from lens-protocol/francesc/devops-982-implement-dependency-review-action-on-lens-protocol-repos
chore: add Dependency Review GitHub Action
2 parents a9d5a6c + 84b7a13 commit a4e844e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Dependency Review
2+
on:
3+
- pull_request
4+
5+
permissions:
6+
contents: read
7+
pull-requests: write
8+
9+
jobs:
10+
dependency-review:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Repository
14+
uses: actions/checkout@v5
15+
- name: Dependency Review
16+
uses: actions/dependency-review-action@v4
17+
with:
18+
comment-summary-in-pr: on-failure
19+
fail-on-severity: moderate
20+
license-check: false

0 commit comments

Comments
 (0)