Skip to content

Commit d6dfa5c

Browse files
authored
Roll-out Copilot Search to 1% of users (#55504)
1 parent fa798a5 commit d6dfa5c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/events/components/experiments/experiments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const EXPERIMENTS = {
2121
ai_search_experiment: {
2222
key: 'ai_search_experiment',
2323
isActive: true, // Set to false when the experiment is over
24-
percentOfUsersToGetExperiment: 0, // 10% of users will get the experiment
24+
percentOfUsersToGetExperiment: 1, // 10% of users will get the experiment
2525
includeVariationInContext: true, // All events will include the `experiment_variation` of the `ai_search_experiment`
2626
limitToLanguages: ['en'], // Only users with the `en` language will be included in the experiment
2727
alwaysShowForStaff: true, // When set to true, staff will always see the experiment (determined by the `staffonly` cookie)

src/search/components/input/SearchOverlay.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,8 +794,8 @@ export function SearchOverlay({
794794
// Hubbers users use an internal discussion for feedback
795795
window.open('https://github.com/github/docs-team/discussions/5172', '_blank')
796796
} else {
797-
// TODO: On ship date set this value
798-
// window.open('TODO', '_blank')
797+
// public discussion for feedback
798+
window.open('https://github.com/orgs/community/discussions/158488', '_blank')
799799
}
800800
}}
801801
as="button"

0 commit comments

Comments
 (0)