diff --git a/.github/workflows/check-pull-request-conventional-commits.yaml b/.github/workflows/check-pull-request-conventional-commits.yaml deleted file mode 100644 index dca83f4e..00000000 --- a/.github/workflows/check-pull-request-conventional-commits.yaml +++ /dev/null @@ -1,11 +0,0 @@ -name: Check conventional commits in pull-requests - -on: - pull_request: - -jobs: - conventional-commits: - runs-on: ubuntu-latest - steps: - - name: Conventional Commits Validator - uses: wtfiscrq/conventional-commits-action@1.0.1 diff --git a/.github/workflows/pr-check.yaml b/.github/workflows/pr-check.yaml index 91ea6ead..c3a02382 100644 --- a/.github/workflows/pr-check.yaml +++ b/.github/workflows/pr-check.yaml @@ -1,8 +1,17 @@ name: Pull request check + on: pull_request: jobs: + + conventional-commits: + runs-on: ubuntu-latest + name: Check conventional commits + steps: + - uses: actions/checkout@v3 + - uses: wagoid/commitlint-github-action@v5 + build: name: Pull request check runs-on: ubuntu-latest