docs: add comprehensive README.md for GitQuest #100
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
| # .github/workflows/semantic-pr.yml | |
| name: Semantic Pull Request | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - reopened | |
| jobs: | |
| validate: | |
| name: Validate PR Title | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Validate Semantic PR Title | |
| uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| # Use a Personal Access Token for full PR access (replace with your secret) | |
| GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
| with: | |
| # Enforce Conventional Commit types | |
| types: | | |
| feat | |
| fix | |
| docs | |
| chore | |
| refactor | |
| test | |
| style | |
| perf | |
| ci | |
| build | |
| revert | |
| # Optional scope requirement (false = no scope required) | |
| requireScope: false | |
| # Disallow uppercase first letter in PR title subject | |
| subjectPattern: ^(?![A-Z]).+$ | |
| subjectPatternError: | | |
| The subject "{subject}" found in the pull request title "{title}" | |
| does not match the required format. Please ensure that the subject | |
| does not start with an uppercase character. | |
| # Ignore PRs with these labels | |
| ignoreLabels: | | |
| bot | |
| automated | |
| # Skip WIP PRs | |
| wip: true |