From 09133b65e67445834b6419e54a81255cccac00d1 Mon Sep 17 00:00:00 2001 From: Alexander Kovalenko Date: Wed, 19 Jun 2024 16:34:36 +0300 Subject: [PATCH] Removed PR title check. --- .github/workflows/test-pr-details.yml | 29 --------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/test-pr-details.yml diff --git a/.github/workflows/test-pr-details.yml b/.github/workflows/test-pr-details.yml deleted file mode 100644 index 1f69b2af..00000000 --- a/.github/workflows/test-pr-details.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Test PR details workflow - -on: - # Triggers the workflow on pull request events - pull_request: - types: - - opened - - synchronize - - edited - - reopened - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - test-pr-title: - permissions: - statuses: write - runs-on: ubuntu-latest - steps: - - uses: aslafy-z/conventional-pr-title-action@v3 - with: - preset: conventional-changelog-conventionalcommits@5.0.0 - repository: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name || github.repository }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}