Skip to content

fix: add GetEvaluator permission to AB test execution role #2477

fix: add GetEvaluator permission to AB test execution role

fix: add GetEvaluator permission to AB test execution role #2477

Workflow file for this run

name: Validate PR Title
on:
pull_request_target:
branches: [main]
types: [opened, edited, synchronize, reopened]
permissions:
statuses: write
jobs:
validate-pr-title:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- uses: amannn/action-semantic-pull-request@v6.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Types aligned with this repo's commit conventions (see AGENTS.md)
types: |
feat
fix
docs
style
refactor
perf
test
build
ci
chore
revert
requireScope: false
# Repo convention: lowercase subjects (e.g., "feat: add new command")
subjectPattern: ^[a-z].+$
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
must start with a lowercase letter.
Example: "feat: add deploy command"
validateSingleCommit: false
# Skip validation for bot/dependency PRs
ignoreLabels: |
bot
dependencies