fix(deps): update monaco-vscode to v36 #107
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_target: | |
| types: [opened, edited, synchronize, reopened] | |
| jobs: | |
| validate-title: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - name: Validate PR title | |
| uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| chore | |
| refactor | |
| style | |
| test | |
| perf | |
| ci | |
| build | |
| revert | |
| requireScope: false | |
| subjectPattern: ^.+$ | |
| subjectPatternError: | | |
| The subject must not be empty. | |
| validateSingleCommit: false | |
| ignoreLabels: | | |
| skip-changelog |