diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml deleted file mode 100644 index 24a521c..0000000 --- a/.github/workflows/commitlint.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Lint Commit Messages - -on: - pull_request: - push: - branches-ignore: - - dependabot/** - -jobs: - commitlint: - name: Check Commit Messages - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v4.0.0 - - - name: Setup and Run Commitlint - uses: wagoid/commitlint-github-action@v5.4.3 diff --git a/.github/workflows/qa-check.yml b/.github/workflows/qa-check.yml index e33a3b9..7fec26a 100644 --- a/.github/workflows/qa-check.yml +++ b/.github/workflows/qa-check.yml @@ -1,6 +1,10 @@ name: QA Checks -on: [push] +on: + push: + branches-ignore: + - dependabot/** + pull_request: jobs: qa-checks: @@ -15,3 +19,13 @@ jobs: - name: Setup and Run the Pre-Commit Hooks uses: pre-commit/action@v3.0.0 + + commitlint: + name: Check Commit Messages + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v4.0.0 + + - name: Setup and Run Commitlint + uses: wagoid/commitlint-github-action@v5.4.3