From 9438cb567b5f8920c737b141202ebedc754c92ce Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Tue, 8 Oct 2024 16:50:15 +0100 Subject: [PATCH] chore: add validation for PR titles --- .github/workflows/ci.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a7dc645ac..98c3800fac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,12 +53,21 @@ jobs: git-branch: badges pr-title-check: name: Validate PR Title - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Validate PR Title and Description uses: amannn/action-semantic-pull-request@v5.0.0 with: - types: "feat,fix,chore,docs,style,refactor,test,ci,perf" + types: | + feat + fix + chore + docs + style + refactor + test + ci + perf env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} race-condition-test: