feat(cli): full i18n for CLI prompts #109
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 Lint | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, ready_for_review] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| lint-pr-title: | |
| name: Lint PR Title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| revert | |
| scopes: | | |
| cli | |
| commands | |
| core | |
| skills | |
| assets | |
| scripts | |
| docs | |
| ci | |
| deps | |
| release | |
| requireScope: false | |
| subjectPattern: ^.{1,72}$ | |
| subjectPatternError: | | |
| PR title subject must be 72 characters or fewer. | |
| Found: "{subject}" ({length} characters) |