From 45b4e483ff1fca3c3e4d0f71e6e55436c6d7638a Mon Sep 17 00:00:00 2001 From: Matthijs Brobbel Date: Thu, 23 Mar 2023 15:06:29 +0100 Subject: [PATCH] fix(ci): fix link to conventional commits spec (#482) --- .github/workflows/pr_title.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml index ca4d41d4b..246aecf45 100644 --- a/.github/workflows/pr_title.yml +++ b/.github/workflows/pr_title.yml @@ -21,7 +21,7 @@ jobs: env: COMMIT_MSG: > ${{ github.event.pull_request.title }} - + ${{ github.event.pull_request.body }} - if: failure() uses: actions/github-script@v6 @@ -29,12 +29,13 @@ jobs: script: | const message = `**ACTION NEEDED** - Substrait follows the [Conventional Commits specification](1) for release automation. + Substrait follows the [Conventional Commits + specification](https://www.conventionalcommits.org/en/v1.0.0/) for + release automation. The PR title and description are used as the merge commit message.\ Please update your PR title and description to match the specification. - - [1]: https://www.conventionalcommits.org/en/v1.0.0/` + ` // Get list of current comments const comments = await github.paginate(github.rest.issues.listComments, { owner: context.repo.owner,