This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch rel/0.4.0 in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git
commit 7402a9413b3b4c9ec64cd0dd0a4627f6f0ab036f Author: kezhenxu94 <[email protected]> AuthorDate: Fri Jul 8 22:04:30 2022 +0800 Draft 0.4.0 --- CHANGES.md | 15 +++++++++++++++ action.yml | 55 ------------------------------------------------------- 2 files changed, 15 insertions(+), 55 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 3fe19f2..c5d9bb0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,18 @@ +## 0.4.0 +- Reorganize GHA by header and dependency. (#123) +- Add rust cargo support for dep command. (#121) +- Support license expression in dep check. (#120) +- Prune npm packages before listing all dependencies (#119) +- Add support for multiple licenses in the header config section (#118) +- Add `excludes` to `license resolve` config (#117) +- maven: set `group:artifact` as dependency name and extend functions in summary template (#116) +- Stablize summary context to perform consistant output (#115) +- Add custom license urls for identification (#114) +- Lazy initialize GitHub client for comment (#111) +- Make license identifying threshold configurable (#110) +- Use Google's licensecheck to identify licenses (#107) +- dep: short circuit if user declare dep license (#108) + ## 0.3.0 - Dependency License diff --git a/action.yml b/action.yml deleted file mode 100644 index d33a37a..0000000 --- a/action.yml +++ /dev/null @@ -1,55 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -name: License Eye Header -description: A full-featured license tool to check and fix license headers and dependencies' licenses. -branding: - icon: book - color: orange -inputs: - log: - description: The level of log, for example, "debug" or "info" - required: false - default: info - config: - description: The configuration file, for example, ".licenserc.yaml" - required: false - default: .licenserc.yaml - token: - description: | - The token that license eye uses when it needs to comment on the pull request. - Set to empty ("") to disable commenting on pull request. - required: false - default: ${{ github.token }} - mode: - description: | - Which mode License Eye should be run in. Choices are `check` or `fix`. The - default value is `check`. - required: false - default: check -runs: - using: docker - image: ../Dockerfile - env: - GITHUB_TOKEN: ${{ inputs.token }} - args: - - -v - - ${{ inputs.log }} - - -c - - ${{ inputs.config }} - - header - - ${{ inputs.mode }}
