This is an automated email from the ASF dual-hosted git repository. vgalaxies pushed a commit to branch release-1.5.0 in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-ai.git
commit 3b5072e115b9f6ef2a4c90309cc3dc5bbb18e64e Author: imbajin <[email protected]> AuthorDate: Mon Nov 25 12:13:33 2024 +0800 chore: enable allow-license & exclude style dir (#119) * chore: enable allow-license & exclude style dir * Create test.sh * Revert "Create test.sh" This reverts commit b100550f442aa19ac52ffdd591bd55a8496b6baa. --- .gitattributes | 1 + .github/workflows/check-dependencies.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitattributes b/.gitattributes index 69e734c..333c08e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -11,4 +11,5 @@ apache-release.sh export-ignore # ignored directory .github/ export-ignore .idea/ export-ignore +style/ export-ignore scripts/ export-ignore diff --git a/.github/workflows/check-dependencies.yml b/.github/workflows/check-dependencies.yml index 48eec91..e15aaba 100644 --- a/.github/workflows/check-dependencies.yml +++ b/.github/workflows/check-dependencies.yml @@ -1,4 +1,4 @@ -name: "3rd-party check" +name: "License header & 3rd-party check" on: pull_request: @@ -8,22 +8,22 @@ permissions: pull-requests: write jobs: - dependency-review: + check-dependency: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' uses: actions/checkout@v4 - name: 'Dependency Review' - uses: actions/dependency-review-action@v3 + uses: actions/dependency-review-action@v4 # Refer: https://github.com/actions/dependency-review-action with: fail-on-severity: low comment-summary-in-pr: on-failure - # Action will fail if dependencies don't match the list - #allow-licenses: Apache-2.0, MIT + # Action will fail if dependencies don't match the list (we could choose only one of the following) deny-licenses: GPL-3.0, AGPL-1.0, AGPL-3.0, LGPL-2.0, CC-BY-3.0 + #allow-licenses: Apache-2.0, MIT - check-license: + check-license-header: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4
