e86547e61988e39a0415d0c1698f477d85947a6a
setup-copilot
A GitHub Action to install the GitHub Copilot CLI in your workflow.
Usage
steps:
- uses: actions/setup-copilot@v1
with:
version: "latest" # optional, defaults to "latest"
github-token: ${{ secrets.COPILOT_TOKEN }} # optional, defaults to github.token
- run: copilot --version
Inputs
| Input | Description | Required | Default |
|---|---|---|---|
version |
Version to install (latest, prerelease, or a specific version like 1.0.0) |
No | latest |
github-token |
GitHub token for Copilot authentication | No | github.token |
Outputs
| Output | Description |
|---|---|
version |
The version of Copilot CLI installed |
Examples
Install latest version
- uses: actions/setup-copilot@v1
Install a specific version
- uses: actions/setup-copilot@v1
with:
version: "1.2.3"
Use with a custom token
- uses: actions/setup-copilot@v1
with:
github-token: ${{ secrets.COPILOT_TOKEN }}
How it works
This action uses the official Copilot CLI install script to download and install the binary, with checksum verification. The binary is installed to the runner's tool cache and added to PATH.
License
Description
Languages
Markdown
100%