Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces a new GitHub Actions workflow to configure and run Copilot setup steps on demand.
- Adds a
workflow_dispatchjob namedcopilot-setup-stepswith minimal permissions - Defines environment setup for Node.js, Rust, and Go, and runs dependency/install commands
- Includes a formatting check step using the
herebytool
Comments suppressed due to low confidence (3)
.github/workflows/copilot-setup-steps.yml:28
- The comment references 'dprint' caches but the step runs 'hereby'. Consider updating the comment to accurately describe pulling 'hereby' caches.
# pull dprint caches before network access is blocked
.github/workflows/copilot-setup-steps.yml:29
- Instead of appending
|| trueto ignore failures, consider using thecontinue-on-error: trueattribute on the step for clarity and consistency.
- run: npx hereby check:format || true
.github/workflows/copilot-setup-steps.yml:18
- [nitpick] Consider using the version tag
@v4.2.2instead of the full commit SHA to improve readability, or consistently pin all actions to specific SHAs for reproducibility.
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
jakebailey
approved these changes
Jun 24, 2025
jakebailey
approved these changes
Jun 24, 2025
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
ref. https://github.com/microsoft/typescript-go/blob/main/.github/workflows/copilot-setup-steps.yml / microsoft/typescript-go#1269