fix(weave): Make it possible to filter calls by thread id #42059
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] | |
| 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@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PR_TITLE_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 | |
| wip: false | |
| requireScope: true | |
| validateSingleCommit: false | |
| validateSingleCommitMatchesPrTitle: false |