PLAT-25679 normalize audio #930
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: Auto Trigger Copilot Review | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| copilot-review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Copilot review | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const prNumber = context.payload.pull_request.number; | |
| const owner = context.repo.owner; | |
| const repo = context.repo.repo; | |
| await github.rest.issues.createComment({ | |
| owner, | |
| repo, | |
| issue_number: prNumber, | |
| body: "@github-copilot suggest" | |
| }); |