From 876047ac35c4b2d5a62749a01c5fd3f1ef637953 Mon Sep 17 00:00:00 2001 From: Chris Rehn Date: Mon, 23 Nov 2020 17:34:46 -0800 Subject: [PATCH] ci: remove PR title check (#2412) Co-authored-by: _sam <3804518+aahung@users.noreply.github.com> --- .github/workflows/pr_title.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .github/workflows/pr_title.yml diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml deleted file mode 100644 index e5621731b9..0000000000 --- a/.github/workflows/pr_title.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Check PR title -on: - pull_request: - types: [opened, edited] -jobs: - check: - runs-on: ubuntu-latest - steps: - - name: Check PR title - run: | - title="${{ github.event.pull_request.title }}" - if [[ ! $title =~ ^.*:\ .*$ ]]; then - echo "Pull request titles must adhere to Conventional Commits: https://www.conventionalcommits.org" - exit 1 - fi