Docs site - basicAuth curl example for all APIs has been hardcoded in docs to say API Key. This isn’t accurate. --2 #47
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: | |
| branches: | |
| - main | |
| - v2.0.0 | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - edited | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check | |
| run: npx ts-node --transpile-only scripts/check-pr-title.ts "$PR_TITLE" | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} |