Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): fix link to conventional commits spec #482

Merged
merged 1 commit into from
Mar 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/pr_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,21 @@ jobs:
env:
COMMIT_MSG: >
${{ github.event.pull_request.title }}

${{ github.event.pull_request.body }}
- if: failure()
uses: actions/github-script@v6
with:
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/`
`
westonpace marked this conversation as resolved.
Show resolved Hide resolved
// Get list of current comments
const comments = await github.paginate(github.rest.issues.listComments, {
owner: context.repo.owner,
Expand Down