Add .github/releases.json with release channels and update install.sh with channel-based version resolution#20688
Closed
Add .github/releases.json with release channels and update install.sh with channel-based version resolution#20688
Conversation
…rsion resolution Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add global configurations for agentic workflows runners
Add .github/releases.json with release channels and update install.sh with channel-based version resolution
Mar 12, 2026
Contributor
|
@copilot stable is v0.57.2 |
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Contributor
Author
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduces a top-level release configuration file at
.github/releases.jsonand updates the install script to resolve versions from named channels instead of always defaulting tolatest..github/releases.jsonDefines named release channels, each with a pinned version and per-engine metadata:
{ "channels": { "stable": { "version": "v0.57.2", "engines": { "copilot": "latest" } }, "latest": { "version": "latest", "engines": { "copilot": "latest" } } } }install-gh-aw.sh/actions/setup-cli/install.shresolve_channel_version()— fetches.github/releases.jsonfromraw.githubusercontent.com(no auth token required) and extracts the version for a named channel. Resolves withjq, falls back topython3/python, thengrep/awk.latest→stablechannel (resolved via releases.json at install time).^v[0-9]+\.[0-9]+\.[0-9]+(including pre-release suffixes) bypass channel resolution and download directly.stable,latest) is resolved via releases.json; falls back to using the value as-is if resolution fails.Original prompt
💬 Send tasks to Copilot coding agent from Slack and Teams to turn conversations into code. Copilot posts an update in your thread when it's finished.