chore: release v0.7.0 #8761
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: chore | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| permissions: {} | |
| jobs: | |
| semantic-pr: | |
| permissions: | |
| contents: read | |
| pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs | |
| statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR | |
| if: github.repository == 'npmx-dev/npmx.dev' | |
| runs-on: ubuntu-slim | |
| name: 🏷️ Validate PR title | |
| steps: | |
| - name: Validate PR title | |
| uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| with: | |
| scopes: | | |
| a11y | |
| blog | |
| deps | |
| docs | |
| cli | |
| i18n | |
| ui | |
| 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 | |
| doesn't start with an uppercase character. | |
| Examples: | |
| ✅ chore(ui): fix button spacing | |
| ✅ docs: update README | |
| ❌ chore(ui): Fix button spacing | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |