Skip to content

Add a new workflow to simplify dependency review #119

Add a new workflow to simplify dependency review

Add a new workflow to simplify dependency review #119

name: Test Coveo Dependency Reviewer
on: pull_request
permissions:
contents: read
pull-requests: write
jobs:
test:
strategy:
matrix:
public: [true, false]
distributed: [true, false]
comment-summary-in-pr: [true, false]
fail-fast: false
uses: ./.github/workflows/dependency-review.yml
with:
public: ${{ matrix.public }}
distributed: ${{ matrix.distributed }}
comment-summary-in-pr: ${{ matrix.comment-summary-in-pr }}
runs-on: '["ubuntu-latest"]'
test_v2:
strategy:
matrix:
warn-on-openssf-scorecard-level: [5, 8]
comment-summary-in-pr: [true, false]
fail-fast: false
uses: ./.github/workflows/dependency-review-v2.yml
with:
warn-on-openssf-scorecard-level: ${{ matrix.warn-on-openssf-scorecard-level }}
comment-summary-in-pr: ${{ matrix.comment-summary-in-pr }}
runs-on: '["ubuntu-latest"]'