* add comment Signed-off-by: Sun, Xuehao <xuehao.sun@intel.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix Signed-off-by: Sun, Xuehao <xuehao.sun@intel.com> * remove test Signed-off-by: Sun, Xuehao <xuehao.sun@intel.com> * Update message Signed-off-by: Sun, Xuehao <xuehao.sun@intel.com> * update message Signed-off-by: Sun, Xuehao <xuehao.sun@intel.com> * Add dependency review Signed-off-by: Sun, Xuehao <xuehao.sun@intel.com> --------- Signed-off-by: Sun, Xuehao <xuehao.sun@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
24 lines
571 B
YAML
24 lines
571 B
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
name: "Dependency Review"
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
dependency-review:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- name: "Checkout Repository"
|
|
uses: actions/checkout@v4
|
|
- name: Dependency Review
|
|
uses: actions/dependency-review-action@v4
|
|
with:
|
|
comment-summary-in-pr: "always"
|
|
fail-on-severity: "low"
|
|
warn-only: true
|
|
show-openssf-scorecard: false
|