Skip to content

Commit

Permalink
Merge branch 'main' into patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
word-wiz committed Sep 15, 2024
2 parents 38b68e4 + eef5e6e commit 917581c
Show file tree
Hide file tree
Showing 9 changed files with 163 additions and 71 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ The skills you can use in {% data variables.product.prodname_copilot_chat_dotcom
| **Release details** | Retrieves the latest, or specified, release. This allows you to find out who created a release, when it happened, and information included in the release notes. | Yes | _When was the latest release?_ |
| **Repository details** | Retrieves a specific {% data variables.product.prodname_dotcom %} repository. This is useful for finding out details such as the repository owner and the main language used. | Yes | _Tell me about this repo_ |
| **Symbol definition** | Retrieves the lines of code that define a specific code symbol (function, class, or struct) in the default branch of the Git repository. This skill is useful when you have the exact name of a symbol, and want to understand it. | Yes | _Write unit tests for the AuthUser method_ |
| **Support search** | Retrieves information from the {% data variables.contact.contact_support_portal %}. This skill is useful for asking {% data variables.product.prodname_copilot_chat_short %} about {% data variables.product.prodname_dotcom %} products and support related questions. | Yes | _Can I use {% data variables.product.prodname_copilot_short %} knowledge bases with {% data variables.product.prodname_copilot_individuals_short %}?_ |

## Asking a general question about software development

Expand Down
167 changes: 131 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
"dayjs": "^1.11.3",
"dotenv": "^16.4.5",
"escape-string-regexp": "5.0.0",
"express": "4.19.2",
"express": "4.20.0",
"express-rate-limit": "7.4.0",
"fastest-levenshtein": "1.0.16",
"file-type": "19.4.1",
Expand Down
3 changes: 3 additions & 0 deletions src/content-render/stylesheets/heading-links.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@
mask: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg>');
mask-size: cover;
background-color: var(--color-fg-subtle);
@media (forced-colors: active) {
background-color: LinkText;
}
}
2 changes: 1 addition & 1 deletion src/frame/components/ui/ScrollButton/ScrollButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const ScrollButton = ({ className, ariaLabel }: ScrollButtonPropsT) => {
onClick={onClick}
className={cx(
'ghd-scroll-to-top', // for data tracking, see events.ts
'tooltipped tooltipped-n tooltipped-no-delay color-bg-accent-emphasis color-fg-on-emphasis circle border-0',
'tooltipped tooltipped-n tooltipped-no-delay btn circle border-1',
'd-flex flex-items-center flex-justify-center',
customFocus,
)}
Expand Down
3 changes: 3 additions & 0 deletions src/links/stylesheets/hover-card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ p.hover-card-anchor {
mask-image: url("/assets/cb-479/images/site/hash.svg");
mask-size: cover;
vertical-align: middle;
@media (forced-colors: active) {
background-color: LinkText;
}
}
}
Loading

0 comments on commit 917581c

Please sign in to comment.