Skip to content

Commit

Permalink
fix(ci): ignore markdown changes for dep review
Browse files Browse the repository at this point in the history
No need to run this action when only markdown is changed

Signed-off-by: Dominic Evans <[email protected]>
  • Loading branch information
dnwe committed Oct 25, 2023
1 parent 3b0f32e commit 7ae18cb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@
#
# Source repository: https://github.com/actions/dependency-review-action
name: 'Dependency Review'
on: [pull_request]
on:
pull_request:
branches:
- "**"
paths-ignore:
- '**/*.md'

permissions:
contents: read # for actions/checkout to fetch code
Expand Down

0 comments on commit 7ae18cb

Please sign in to comment.