feat(projectional-editor): notations for the languages used with baseLanguage #96
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 Lint | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| # Required so the action can list the PR's commits via the API. On | |
| # Dependabot-triggered runs the token grants only what is declared here. | |
| pull-requests: read | |
| concurrency: | |
| group: pr-lint-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| conventional-commits: | |
| name: Conventional Commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Full history is needed so commitlint can walk every commit in the PR | |
| # range. The changelog is generated from these messages, so each commit | |
| # (not the PR title) must be a valid Conventional Commit. | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Lint PR commits | |
| uses: wagoid/commitlint-github-action@b948419dd99f3fd78a6548d48f94e3df7f6bf3ed # v6 | |
| with: | |
| configFile: commitlint.config.mjs |