feat(docs): add bilingual humanizer skill for natural KR/EN text rewrites #241
Workflow file for this run
This file contains hidden or 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: PR Title Check | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| permissions: | |
| pull-requests: read | |
| statuses: write | |
| jobs: | |
| main: | |
| name: Validate PR title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check bot user | |
| id: bot-check | |
| env: | |
| PR_AUTHOR: ${{ github.event.pull_request.user.login }} | |
| run: | | |
| if [[ "$PR_AUTHOR" == *"[bot]"* ]]; then | |
| echo "✓ Bot user detected - skipping validation" | |
| echo "is_bot=true" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "is_bot=false" >> "$GITHUB_OUTPUT" | |
| fi | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| if: steps.bot-check.outputs.is_bot == 'false' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Scope is optional (allows both `type: title` and `type(scope): title`) | |
| requireScope: false | |
| # Disallow uppercase scopes | |
| disallowScopes: | | |
| [A-Z]+ | |
| # Work in progress PR support | |
| wip: true | |
| # Skip validation for PRs with these labels | |
| ignoreLabels: | | |
| bot | |
| ignore-semantic-pull-request | |
| # Ensure the subject doesn't start with an uppercase character | |
| subjectPattern: ^[a-z].*$ | |
| subjectPatternError: | | |
| The subject "{subject}" found in the pull request title "{title}" | |
| didn't match the configured pattern. Please ensure that the subject | |
| starts with a lowercase character. |