chore(deps): update vcpkg baseline to current upstream HEAD #14
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: Copilot code review setup | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [develop, community] | |
| paths: | |
| - '.github/workflows/copilot-code-review.yml' | |
| pull_request: | |
| branches: [develop, community] | |
| paths: | |
| - '.github/workflows/copilot-code-review.yml' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: copilot-code-review-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # The job name must remain `copilot-setup-steps` so Copilot can detect it. | |
| copilot-setup-steps: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Confirm runner availability | |
| run: echo "Copilot code review runner is configured." |