feat(weave): add native async calls and calls-stats reads [3/4] #56416
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: Check PR | |
| on: | |
| workflow_dispatch: | |
| pull_request_target: | |
| types: [opened, edited, synchronize] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| cc: | |
| name: Validate PR title | |
| runs-on: ubuntu-latest | |
| steps: | |
| # https://github.com/amannn/action-semantic-pull-request/releases | |
| - uses: amannn/action-semantic-pull-request@e32d7e603df1aa1ba07e981f2a23455dee596825 # v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Allowed types: See CONTRIBUTING.md | |
| types: | | |
| chore | |
| feat | |
| fix | |
| perf | |
| refactor | |
| revert | |
| style | |
| security | |
| test | |
| scopes: | | |
| ui | |
| weave | |
| weave_ts | |
| app | |
| dev | |
| deps | |
| inference | |
| wip: false | |
| requireScope: true | |
| validateSingleCommit: false | |
| validateSingleCommitMatchesPrTitle: false |