Skip to content

fix(#221): return actual conversation in ScenarioResult.messages instead of judge context #1753

fix(#221): return actual conversation in ScenarioResult.messages instead of judge context

fix(#221): return actual conversation in ScenarioResult.messages instead of judge context #1753

name: Conventional Commits
on:
pull_request:
types: [opened, edited, synchronize, reopened]
permissions:
pull-requests: read
statuses: write
jobs:
check-pr-title:
name: Validate PR Title
runs-on: ubuntu-latest
steps:
- name: Check PR Title
uses: amannn/action-semantic-pull-request@e32d7e603df1aa1ba07e981f2a23455dee596825 # v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Configure which types are allowed (default from conventional commits)
types: |
feat
fix
docs
style
refactor
perf
test
build
ci
chore
revert
# Configure whether a scope is required.
requireScope: false
# Configure additional validation for the subject based on a regex.
# This example ensures the subject doesn't start with an uppercase character.
subjectPattern: ^(?![A-Z]).+$
# If `subjectPattern` is configured, you can use this property to override
# the default error message that is shown when the pattern doesn't match.
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character.
# For work-in-progress PRs, you can typically use draft pull requests
# from GitHub. However, private repositories on the free plan don't have
# this option and therefore this action allows you to opt-in to using the
# special "[WIP]" prefix to indicate this state. This will avoid the
# validation of the PR title and the pull request checks remain pending.
wip: true
# When using "Squash and merge" on a PR with only one commit, GitHub
# will suggest using that commit message instead of the PR title for the
# merge commit, and it's easy to commit this by mistake. Enable this option
# to also validate the commit message for one-commit PRs.
validateSingleCommit: true