feat(server): Phase 3: control store backend #973
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 | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Validate PR title | |
| uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| scopes: | | |
| sdk | |
| sdk-ts | |
| server | |
| models | |
| engine | |
| evaluators | |
| ci | |
| docs | |
| infra | |
| ui | |
| examples | |
| requireScope: true | |
| # Allow these types without scope | |
| ignoreTypes: | | |
| docs | |
| ci | |
| test | |
| style |