Skip to content

Commit 4329af4

Browse files
authored
Various agent mode updates (#2094)
1 parent 2459249 commit 4329af4

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,4 @@ The TypeScript submodule serves as the reference implementation for behavior and
110110

111111
- Do not add or change existing dependencies unless asked to.
112112
- Do not remove any debug assertions or panic calls. Existing assertions are never too strict or incorrect.
113+
- Do not use the `timeout` command when running tests or other commands, unless specifically debugging a hanging issue. Commands should be run directly without timeout wrappers in normal operation.

.github/workflows/copilot-setup-steps.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,24 @@ jobs:
1313
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission. If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
1414
contents: read
1515

16+
env:
17+
MS_GOTOOLCHAIN_TELEMETRY_ENABLED: '0'
18+
1619
# You can define any steps you want, and they will run before the agent starts.
1720
# If you do not check out your code, Copilot will do this for you.
1821
steps:
1922
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2023
with:
2124
submodules: true
2225
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
26+
with:
27+
node-version: '>=22.16.0'
2328
- uses: dtolnay/rust-toolchain@fcf085fcb4b4b8f63f96906cd713eb52181b5ea4 # stable
2429
- uses: ./.github/actions/setup-go
2530
with:
2631
lint-cache: 'true'
2732
- run: npm i -g @playwright/[email protected]
33+
- run: go install golang.org/x/tools/gopls@latest
2834
- run: npm ci
2935
# pull dprint caches before network access is blocked
3036
- run: npx hereby check:format || true

0 commit comments

Comments
 (0)