From e5bf7e6f13766587f8cfd426c2551ef4fdac4db9 Mon Sep 17 00:00:00 2001 From: Max Xu Date: Mon, 11 Dec 2023 10:18:01 +0800 Subject: [PATCH] fix: add pr check ci (#53) fix: add pr check ci --- .github/workflows/pr.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pr.yaml diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml new file mode 100644 index 0000000..84b510d --- /dev/null +++ b/.github/workflows/pr.yaml @@ -0,0 +1,19 @@ +name: PR + +on: + pull_request: + branches: + - '*' + types: + - opened + - reopened + - edited + - synchronize + +jobs: + title-check: + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file