From b8f22648442c0e589bf730104de8e5becbc0474f Mon Sep 17 00:00:00 2001 From: Xavientois <34867186+Xavientois@users.noreply.github.com> Date: Fri, 12 Nov 2021 10:51:40 -0500 Subject: [PATCH] fix: update pr-checker workflow title (#23) --- .github/workflows/pr-checker.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-checker.yaml b/.github/workflows/pr-checker.yaml index 7e580aa..10d5c8e 100644 --- a/.github/workflows/pr-checker.yaml +++ b/.github/workflows/pr-checker.yaml @@ -1,11 +1,11 @@ -name: PR Title validation +name: PR Validation on: pull_request: types: [opened, edited, synchronize, reopened] jobs: - pr-validation: + pr-title-validation: name: Checks if the PR title is valid runs-on: ubuntu-latest if: ${{ github.actor != 'dependabot[bot]' }} @@ -13,4 +13,4 @@ jobs: - uses: deepakputhraya/action-pr-title@master with: regex: ${{ secrets.PR_TITLE_REGEX }} # Regex the title should match. - github_token: ${{ secrets.GH_SA_TOKEN }} \ No newline at end of file + github_token: ${{ secrets.GH_SA_TOKEN }}