From a46ac9c7a658361237f46e95d57b7cfa8a185b0a Mon Sep 17 00:00:00 2001 From: Christopher Hertel Date: Fri, 20 Jun 2025 23:44:55 +0200 Subject: [PATCH] ci: remove check for conventional commit message --- .github/workflows/pipeline.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index af09239..bf67464 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -1,10 +1,6 @@ name: pipeline on: pull_request -permissions: - contents: read - pull-requests: write - jobs: tests: runs-on: ubuntu-latest @@ -41,13 +37,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Conventional Commit - uses: ytanikin/pr-conventional-commits@1.4.1 - with: - task_types: '["feat", "fix", "docs", "test", "ci", "style", "refactor", "perf", "chore", "revert"]' - add_label: 'true' - custom_labels: '{"feat": "feature", "fix": "bug", "docs": "documentation", "test": "test", "ci": "CI/CD", "style": "codestyle", "refactor": "refactor", "perf": "performance", "chore": "chore", "revert": "revert"}' - - name: Setup PHP uses: shivammathur/setup-php@v2 with: