-
Notifications
You must be signed in to change notification settings - Fork 658
Configure Copilot agent environment to match devcontainer #236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+88
−3
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,15 @@ | ||
| name: "Copilot Setup Steps" | ||
|
|
||
| # This workflow configures the environment for GitHub Copilot Agent with gh-aw MCP server | ||
| # This workflow configures the environment for GitHub Copilot Agent | ||
| # Automatically run the setup steps when they are changed to allow for easy validation | ||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| paths: | ||
| - .github/workflows/copilot-setup-steps.yml | ||
| pull_request: | ||
| paths: | ||
| - .github/workflows/copilot-setup-steps.yml | ||
|
|
||
| jobs: | ||
| # The job MUST be called 'copilot-setup-steps' to be recognized by GitHub Copilot Agent | ||
|
|
@@ -18,8 +22,89 @@ jobs: | |
| contents: read | ||
|
|
||
| steps: | ||
| # Checkout the repository to install dependencies | ||
| - name: Checkout code | ||
| uses: actions/[email protected] | ||
|
|
||
| # Setup Node.js (for TypeScript/JavaScript SDK and tooling) | ||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: "22" | ||
| cache: "npm" | ||
| cache-dependency-path: | | ||
| ./nodejs/package-lock.json | ||
| ./test/harness/package-lock.json | ||
|
|
||
| # Setup Python (for Python SDK) | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: "3.12" | ||
|
|
||
| # Setup uv (Python package manager used in this repo) | ||
| - name: Set up uv | ||
| uses: astral-sh/setup-uv@v7 | ||
| with: | ||
| enable-cache: true | ||
|
|
||
| # Setup Go (for Go SDK) | ||
| - name: Set up Go | ||
| uses: actions/setup-go@v6 | ||
| with: | ||
| go-version: "1.23" | ||
|
|
||
| # Setup .NET (for .NET SDK) | ||
| - name: Set up .NET | ||
| uses: actions/setup-dotnet@v5 | ||
| with: | ||
| dotnet-version: "8.0.x" | ||
|
|
||
| # Install just command runner | ||
| - name: Install just | ||
| uses: extractions/setup-just@v3 | ||
|
|
||
| # Install gh-aw extension for advanced GitHub CLI features | ||
| - name: Install gh-aw extension | ||
| run: | | ||
| curl -fsSL https://raw.githubusercontent.com/githubnext/gh-aw/refs/heads/main/install-gh-aw.sh | bash | ||
| - name: Verify gh-aw installation | ||
| run: gh aw version | ||
|
|
||
| # Install JavaScript dependencies | ||
| - name: Install Node.js dependencies | ||
| working-directory: ./nodejs | ||
| run: npm ci --ignore-scripts | ||
|
|
||
| # Install Python dependencies | ||
| - name: Install Python dependencies | ||
| working-directory: ./python | ||
| run: uv sync --locked --all-extras --dev | ||
|
|
||
| # Install Go dependencies | ||
| - name: Install Go dependencies | ||
| working-directory: ./go | ||
| run: go mod download | ||
|
|
||
| # Restore .NET dependencies | ||
| - name: Restore .NET dependencies | ||
| working-directory: ./dotnet | ||
| run: dotnet restore | ||
|
|
||
| # Install test harness dependencies | ||
| - name: Install test harness dependencies | ||
| working-directory: ./test/harness | ||
| run: npm ci --ignore-scripts | ||
|
|
||
| # Verify installations | ||
| - name: Verify tool installations | ||
| run: | | ||
| echo "=== Verifying installations ===" | ||
| node --version | ||
| npm --version | ||
| python --version | ||
| uv --version | ||
| go version | ||
| dotnet --version | ||
| just --version | ||
| gh --version | ||
| gh aw version | ||
| echo "✅ All tools installed successfully" | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.