.github/workflows/dependency-review.yml
Metadata
- Purpose: CI/CD workflow definition for repository automation.
- Domain:
automation - Language:
yaml - Bytes: 462
- Lines: 21
- Content hash (short):
ec3952cd - Source (start): .github/workflows/dependency-review.yml:1
- Source (end): .github/workflows/dependency-review.yml:21
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
name: Dependency Review
on:
pull_request:
jobs:
dependency-review:
if: ${{ github.repository_visibility == 'public' || vars.ENABLE_DEPENDENCY_REVIEW == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Dependency Review
uses: actions/dependency-review-action@v4
with:
fail-on-severity: high