From 858194400a3281c33bee35a319b64f05242453a4 Mon Sep 17 00:00:00 2001 From: zachaller Date: Sat, 15 Oct 2022 20:46:36 -0500 Subject: [PATCH] ci: fix pr lint check Signed-off-by: zachaller --- .github/workflows/pr-title-check.yml | 60 ++++++++++++++-------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/pr-title-check.yml b/.github/workflows/pr-title-check.yml index 5f11c118ae..dd165bdf28 100644 --- a/.github/workflows/pr-title-check.yml +++ b/.github/workflows/pr-title-check.yml @@ -13,35 +13,35 @@ jobs: runs-on: ubuntu-latest steps: - uses: amannn/action-semantic-pull-request@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - # Configure which types are allowed (newline delimited). - # Default: https://github.com/commitizen/conventional-commit-types - types: | - feat - fix - docs - style - refactor - perf - test - build - ci - chore - revert + with: + # Configure which types are allowed (newline delimited). + # Default: https://github.com/commitizen/conventional-commit-types + types: | + feat + fix + docs + style + refactor + perf + test + build + ci + chore + revert - # Configure which scopes are allowed (newline delimited). - scopes: | - controller - dashboard - trafficrouting - analysis - metricprovider - experiments - deps - example - cli + # Configure which scopes are allowed (newline delimited). + scopes: | + controller + dashboard + trafficrouting + analysis + metricprovider + experiments + deps + example + cli - # Configure that a scope must always be provided. - requireScope: false + # Configure that a scope must always be provided. + requireScope: false + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}