From f3eac88dbfd091d33d0e5218649940b552321c8a Mon Sep 17 00:00:00 2001 From: Simon Templer Date: Mon, 1 Apr 2024 02:33:48 +0200 Subject: [PATCH] ci: add/update workflow for checking commit conventions --- .github/workflows/tf-conventional-commits.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/tf-conventional-commits.yml diff --git a/.github/workflows/tf-conventional-commits.yml b/.github/workflows/tf-conventional-commits.yml deleted file mode 100644 index 34ba105..0000000 --- a/.github/workflows/tf-conventional-commits.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Check commit conventions - -on: - pull_request: - branches: - - '*' - -jobs: - verify-commits: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - # https://github.com/taskmedia/action-conventional-commits - - uses: taskmedia/action-conventional-commits@v1.1.15 - with: - types: "feat|fix|refactor|revert|ci|chore|docs|build|perf|test|style" - skip_revert: false