We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4adc234 commit 36a1dfdCopy full SHA for 36a1dfd
.github/workflows/automatically-request-copilot-review.yaml
@@ -13,12 +13,14 @@ jobs:
13
name: "Add Copilot to PR reviews"
14
if: ${{ github.event.pull_request.draft == false }} # skip still-draft PRs
15
runs-on: ubuntu-latest
16
- env:
17
- GH_TOKEN: ${{ secrets.GH_TOKEN_COPILOT_REVIEW }} # gh CLI picks this up automatically
18
19
steps:
20
- name: Install gh-copilot-review extension
+ env:
+ GH_TOKEN: ${{ github.token }}
21
run: gh extension install ChrisCarini/gh-copilot-review
22
23
- name: Ask Copilot to review this PR
24
25
+ GH_TOKEN: ${{ secrets.GH_TOKEN_COPILOT_REVIEW }} # gh CLI picks this up automatically
26
run: gh copilot-review "${{ github.event.pull_request.html_url }}"
0 commit comments