chore: Improve tags integration tests #3076
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
# Validates PR title follows conventional commits | |
on: | |
pull_request: | |
types: | |
- edited | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
conventional_commit_title: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
const validator = /^(chore|feat|fix|revert|docs|style)(\([a-z ]+\))?(!)?: (.)+$/ | |
const title = context.payload.pull_request.title | |
const is_valid = validator.test(title) | |
if (!is_valid) { | |
const details = JSON.stringify({ | |
title: title, | |
valid_syntax: validator.toString(), | |
}) | |
core.setFailed(`Your pr title doesn't adhere to conventional commits syntax. See more details: ${details}`) | |
} |