feat: Add bun support #248
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, reopened] | |
| jobs: | |
| pr-title-check: | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Configure which types are allowed | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| revert | |
| # Require scope to be provided | |
| requireScope: false | |
| # Configure which scopes are allowed (empty = any scope allowed) | |
| scopes: | | |
| cli | |
| mcp | |
| devbox | |
| benchmark | |
| secret | |
| blueprint | |
| storage-object | |
| network-policy | |
| main | |
| snapshot | |
| config | |
| auth | |
| deps | |
| # Ensure the subject starts with a lowercase letter | |
| subjectPattern: ^(?![A-Z]).+$ | |
| subjectPatternError: | | |
| The subject "{subject}" found in the pull request title "{title}" | |
| should start with a lowercase letter. | |
| Examples: | |
| - feat: add new devbox command | |
| - fix(cli): resolve argument parsing issue | |
| - docs: update README with usage examples |