From 8bebcc7d33f5769d822ac509d330216d82a042d9 Mon Sep 17 00:00:00 2001 From: Ashish Keshan Date: Thu, 27 Feb 2025 13:49:41 -0500 Subject: [PATCH 1/3] change give_feedback link (#54604) --- src/search/components/input/SearchOverlay.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search/components/input/SearchOverlay.tsx b/src/search/components/input/SearchOverlay.tsx index a1cdda3d68bf..865842f8e00e 100644 --- a/src/search/components/input/SearchOverlay.tsx +++ b/src/search/components/input/SearchOverlay.tsx @@ -651,7 +651,7 @@ export function SearchOverlay({ onClick={async () => { if (await getIsStaff()) { // Hubbers users use an internal discussion for feedback - window.open('https://github.com/github/docs-team/discussions/4952', '_blank') + window.open('https://github.com/github/docs-engineering/discussions/5295', '_blank') } else { // TODO: On ship date set this value // window.open('TODO', '_blank') From e7d4c1f074cd97632a24c2ef80bc58c4ee644d88 Mon Sep 17 00:00:00 2001 From: Laura Coursen Date: Thu, 27 Feb 2025 14:22:47 -0600 Subject: [PATCH 2/3] Make order of OS consistent in "Learning to debug..." (#54598) --- .../learning-to-debug-with-github-copilot.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/content/get-started/learning-to-code/learning-to-debug-with-github-copilot.md b/content/get-started/learning-to-code/learning-to-debug-with-github-copilot.md index 5e8a3cf9a8b3..08eb84b06493 100644 --- a/content/get-started/learning-to-code/learning-to-debug-with-github-copilot.md +++ b/content/get-started/learning-to-code/learning-to-debug-with-github-copilot.md @@ -62,7 +62,7 @@ First, we need to create a local copy of the example repository: Now that we've cloned the repository, let's run `bugged_dice_battle.py` to see the output: -1. Open the Command Palette by pressing Cmd+Shift+P (Mac) or Ctrl+Shift+P (Windows/Linux). +1. Open the Command Palette by pressing Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac). 1. Type `Terminal: Create New Terminal` and press Enter. 1. In the terminal tab, paste the following command. @@ -80,7 +80,11 @@ Now that we've cloned the repository, let's run `bugged_dice_battle.py` to see t 1. Press Enter to run the program. -Unfortunately, we get some error text in our terminal ending with the following message: `TypeError: can only concatenate str (not "int") to str`. To understand what this means, press Command+Shift+I (Mac) or Ctrl+Alt+I (Windows/Linux) to open {% data variables.product.prodname_copilot_chat_short %}, then paste and send the following prompt: +Unfortunately, we get some error text in our terminal ending with the following message: + +> TypeError: can only concatenate str (not "int") to str + +To understand what this means, press Ctrl+Alt+I (Windows/Linux) or Command+Shift+I (Mac) to **open {% data variables.product.prodname_copilot_chat_short %}**, then paste and send the following prompt: ```text copy Explain in depth why my code produces the following error and how I can fix it: From 8bbb598c547996a23a4ecf8edc195359b66dba4d Mon Sep 17 00:00:00 2001 From: Ashish Keshan Date: Thu, 27 Feb 2025 16:04:38 -0500 Subject: [PATCH 3/3] [Copilot Search] Place internal testers in treatment group for metric testing (#54606) --- src/events/components/experiments/experiment.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/events/components/experiments/experiment.ts b/src/events/components/experiments/experiment.ts index fee4251658d2..41a0e67f8383 100644 --- a/src/events/components/experiments/experiment.ts +++ b/src/events/components/experiments/experiment.ts @@ -54,6 +54,7 @@ export function shouldShowExperiment( ? routerQuery.feature.toLowerCase() === experiment.turnOnWithURLParam.toLowerCase() : false ) { + controlGroupOverride[experimentKey] = TREATMENT_VARIATION return true } }