merge: release-2024-45 to dev #2760
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR title | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
env: | |
PR_TITLE: ${{ github.event.pull_request.title }} | |
steps: | |
- id: release | |
name: Check for release PR format | |
if: startsWith(github.event.pull_request.title, 'Release') | |
shell: bash | |
run: | | |
if ! grep -qP '^Release [0-9]{4}-[0-9]{2}$' <<< "$PR_TITLE"; then | |
echo "::warning::Release PR title should be: 'Release <year>-<ISO week number>'" | |
exit 1 | |
fi | |
- name: Check for Conventional Commit format | |
shell: bash | |
if: steps.release.conclusion == 'skipped' | |
run: | | |
if ! grep -qP '^\w+(\(\w+\))?:\s' <<< "$PR_TITLE"; then | |
echo "::warning::PR title should be in Conventional Commit style, e.g. 'feat: ...'" | |
exit 1 | |
fi | |
- name: Check for conventional type allow-list | |
if: steps.release.conclusion == 'skipped' | |
shell: bash | |
run: | | |
if ! grep -qP '^(ci|db|deps|doc|env|feat|fix|fmt|merge|refactor|repo|revert|style|test|tweak)(\(\w+\))?:\s' <<< "$PR_TITLE"; then | |
echo "::warning::PR title Conventional Type is not on the list; refer to CONTRIBUTING.md" | |
exit 1 | |
fi | |
- name: Check for Linear card number for feature branches | |
if: steps.release.conclusion == 'skipped' && startsWith(github.event.pull_request.title, 'feat') | |
shell: bash | |
run: | | |
if ! grep -qP '^\w+(\(\w+\))?:\s[A-Z]+-[0-9]+(:\s+\w+)?' <<< "$PR_TITLE"; then | |
echo "::warning::PR title should start with ticket number, e.g. 'feat(scope): ABC-123: ...'" | |
exit 1 | |
fi |