From a307c32acfd78cd100a6727c64631bcc8c87b0bc Mon Sep 17 00:00:00 2001 From: SimonT <96721494+Simon-Tl@users.noreply.github.com> Date: Mon, 29 Sep 2025 14:07:05 +0800 Subject: [PATCH] feat: add commit check --- .github/workflows/commit-check.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/commit-check.yaml diff --git a/.github/workflows/commit-check.yaml b/.github/workflows/commit-check.yaml new file mode 100644 index 0000000..1db1228 --- /dev/null +++ b/.github/workflows/commit-check.yaml @@ -0,0 +1,10 @@ + +name: Commit Message Lint + +on: + pull_request: + types: [opened, synchronize, edited, reopened] + +jobs: + commitlint: + uses: GradientHQ/.github/.github/workflows/commitlint.yml@main