From 6f2eddc95d814524aac2d0c4dbefa303ba3628e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Feb 2023 17:47:55 -0700 Subject: [PATCH 1/6] chore(deps): bump commit-check from 0.4.2 to 0.5.1 (#11) Bumps [commit-check](https://github.com/commit-check/commit-check) from 0.4.2 to 0.5.1. - [Release notes](https://github.com/commit-check/commit-check/releases) - [Commits](https://github.com/commit-check/commit-check/compare/v0.4.2...v0.5.1) --- updated-dependencies: - dependency-name: commit-check dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 47b7663..630d34a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ # Install commit-check CLI # For details please see: https://github.com/commit-check/commit-check -commit-check==0.4.2 +commit-check==0.5.1 From 65ac4d36d74351d70cac30207f6d1a6d6662146d Mon Sep 17 00:00:00 2001 From: Peter Shen Date: Tue, 14 Feb 2023 21:03:21 -0700 Subject: [PATCH 2/6] docs: create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..149b4e3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 shenxianpeng (xianpeng.shen@gmail.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From eb68373ba0017a86f49f2873394074c71aa341b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Feb 2023 08:46:18 +0800 Subject: [PATCH 3/6] chore(deps): bump commit-check from 0.5.1 to 0.5.3 (#13) Bumps [commit-check](https://github.com/commit-check/commit-check) from 0.5.1 to 0.5.3. - [Release notes](https://github.com/commit-check/commit-check/releases) - [Commits](https://github.com/commit-check/commit-check/compare/v0.5.1...v0.5.3) --- updated-dependencies: - dependency-name: commit-check dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 630d34a..f31d6bd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ # Install commit-check CLI # For details please see: https://github.com/commit-check/commit-check -commit-check==0.5.1 +commit-check==0.5.3 From 6390e2c7feadce56d32285bebdce74c368aba4bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 23:01:17 -0600 Subject: [PATCH 4/6] chore(deps): bump commit-check from 0.5.3 to 0.5.4 (#16) Bumps [commit-check](https://github.com/commit-check/commit-check) from 0.5.3 to 0.5.4. - [Release notes](https://github.com/commit-check/commit-check/releases) - [Commits](https://github.com/commit-check/commit-check/compare/v0.5.3...v0.5.4) --- updated-dependencies: - dependency-name: commit-check dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f31d6bd..4c67149 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ # Install commit-check CLI # For details please see: https://github.com/commit-check/commit-check -commit-check==0.5.3 +commit-check==0.5.4 From 30564fef2353058785b6503a81753005e18b2326 Mon Sep 17 00:00:00 2001 From: Peter Shen Date: Fri, 7 Apr 2023 21:06:05 +0800 Subject: [PATCH 5/6] fix: unrecognized arguments (#17) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9c5451a..98703ea 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -26,7 +26,7 @@ run_commit_check(){ fi echo "commit-check $args" - commit-check "$args" > result.txt + commit-check $args > result.txt ret_code=$? } From a7d7e72c49d7a85305ed160f175e09502e2ba87e Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Fri, 7 Apr 2023 13:09:43 +0000 Subject: [PATCH 6/6] chore: add workflow_dispatch event --- .github/workflows/commit-check.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/commit-check.yml b/.github/workflows/commit-check.yml index fad54eb..700425f 100644 --- a/.github/workflows/commit-check.yml +++ b/.github/workflows/commit-check.yml @@ -4,6 +4,7 @@ on: push: pull_request: branches: 'main' + workflow_dispatch: jobs: commit-check: