diff --git a/.github/workflows/conventional-commit.yml b/.github/workflows/conventional-commit.yml index 764e5f10a..5d6721454 100644 --- a/.github/workflows/conventional-commit.yml +++ b/.github/workflows/conventional-commit.yml @@ -1,15 +1,16 @@ -name: PR Title Checks +name: PR Title Check on: pull_request: + branches: [main] types: [opened, synchronize, reopened, edited] jobs: - validate-pr-title: + conventional-commit-check: runs-on: ubuntu-latest steps: - name: Conventional Commit Validation uses: ytanikin/pr-conventional-commits@1.4.0 with: - task_types: '["feat","fix", "docs", "test", "ci", "refactor", "chore", "revert", "release"]' + task_types: '["feat","fix", "docs", "test", "ci", "refactor", "chore", "revert"]' add_label: 'false' \ No newline at end of file