From 05940f1e837871be5cda1b94dceb6c721274a7a0 Mon Sep 17 00:00:00 2001 From: Richard Case Date: Thu, 7 Oct 2021 13:49:27 +0100 Subject: [PATCH] chore: remove title check action Removing the GitHub Actions workflow that performs the checks to ensure that the PR title follows conventional commits. This is because we already require a label to be applied to the PRs that denote the type of change it is. Signed-off-by: Richard Case --- .github/workflows/titlecheck.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/titlecheck.yml diff --git a/.github/workflows/titlecheck.yml b/.github/workflows/titlecheck.yml deleted file mode 100644 index 3783e7cb..00000000 --- a/.github/workflows/titlecheck.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: titlecheck - -on: - - pull_request_target - -jobs: - titlecheck: - name: PR title follows coventional commit - runs-on: ubuntu-latest - steps: - - name: Check conventinal title - uses: aslafy-z/conventional-pr-title-action@master - with: - success-state: Title follows the specification. - failure-state: Title does not follow the specification. See https://www.conventionalcommits.org/en/v1.0.0/ - context-name: conventional-pr-title - preset: conventional-changelog-angular@latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file