Skip to content

Commit 20deffb

Browse files
authored
Merge pull request #36171 from github/repo-sync
Repo sync
2 parents bca2d96 + 12d6749 commit 20deffb

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

config/kubernetes/production/deployments/webapp.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ spec:
2323
image: docs-internal
2424
resources:
2525
requests:
26-
cpu: 4000m
27-
memory: 8Gi
26+
cpu: 1000m
27+
memory: 4500Mi
2828
limits:
2929
cpu: 8000m
3030
memory: 16Gi

content/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/using-your-github-profile-to-enhance-your-resume.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ To give the best impression, you'll want to make sure that hiring managers can u
8484
* **Simplify** complex functions, break down large classes, and remove redundant code
8585
* Provide **tests** to validate that your code is working as expected
8686

87-
It's easiest to make these changes in {% data variables.product.prodname_vscode_shortname %} with {% data variables.product.prodname_copilot_short %}. For example, when you start typing a line comment, {% data variables.product.prodname_copilot_short %} can automatically suggest the rest of the comment. To get started, see [Set up Visual Studio Code with Copilot](https://code.visualstudio.com/docs/copilot/setup-simplified) in the Visual Studio Code documentation.
87+
The easiest way to follow these practices is to use {% data variables.product.prodname_copilot_short %} with {% data variables.product.prodname_vscode_shortname %}. See [Set up Visual Studio Code with Copilot](https://code.visualstudio.com/docs/copilot/setup-simplified) in the {% data variables.product.prodname_vscode_shortname %} documentation.
8888

8989
### Update your project's dependencies
9090

@@ -102,3 +102,7 @@ If you want to improve your profile even more, incorporate these practices into
102102
* **Use issues, pull requests, and {% data variables.product.prodname_projects_v2 %}**. Showcase your task management and project planning skills by tracking bugs and feature requests with issues and using {% data variables.product.prodname_projects_v2 %} to organize them.
103103
* **Keep dependencies updated**. Use {% data variables.product.prodname_dependabot_version_updates %} to automatically update your project's dependencies with the latest security features and bug fixes.
104104
* **Contribute to open source**. Open source contributions showcase your collaboration skills and prove that you can work in complex code bases. For more information, see [AUTOTITLE](/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github).
105+
106+
## Further reading
107+
108+
* [AUTOTITLE](/copilot/example-prompts-for-github-copilot-chat/refactoring-code/improving-code-readability-and-maintainability)

src/secret-scanning/data/public-docs.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2100,6 +2100,17 @@
21002100
hasPushProtection: true
21012101
hasValidityCheck: false
21022102
isduplicate: false
2103+
- provider: LinkedIn
2104+
supportedSecret: LinkedIn Client Secret
2105+
secretType: linkedin_client_secret
2106+
versions:
2107+
fpt: '*'
2108+
ghec: '*'
2109+
isPublic: false
2110+
isPrivateWithGhas: true
2111+
hasPushProtection: false
2112+
hasValidityCheck: false
2113+
isduplicate: false
21032114
- provider: Lob
21042115
supportedSecret: Lob Live API Key
21052116
secretType: lob_live_api_key
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"sha": "4b7c10eadf71996bd2c377426a32d64ccd2d2a4f",
3-
"blob-sha": "8d41807df8ca3251a421bbc85a33153cd89a15b1",
2+
"sha": "c1d54b30a2779d3250e4c257fd0f02a8e6258787",
3+
"blob-sha": "279704983e923e7b2ec8ccc784d68492d16e0d9a",
44
"targetFilename": "code-security/secret-scanning/introduction/supported-secret-scanning-patterns"
55
}

src/workflows/husky/post-checkout

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/bin/sh
22
[ -n "$CI" ] && exit 0
33

4+
# Ignore this check if user has DOCS_NO_AUTO_NPM set in their environment
5+
if [ -n "$DOCS_NO_AUTO_NPM" ]; then
6+
echo "Skipping auto-npm install because DOCS_NO_AUTO_NPM is set"
7+
exit 0
8+
fi
9+
410
# Same process in husky/post-merge
511
echo "Checking if packages need to be installed..."
612
if npm run cmp-files -- package-lock.json .installed.package-lock.json; then

src/workflows/husky/post-merge

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/bin/sh
22
[ -n "$CI" ] && exit 0
33

4+
# Ignore this check if user has DOCS_NO_AUTO_NPM set in their environment
5+
if [ -n "$DOCS_NO_AUTO_NPM" ]; then
6+
echo "Skipping auto-npm install because DOCS_NO_AUTO_NPM is set"
7+
exit 0
8+
fi
9+
410
# Same process in husky/post-checkout
511
echo "Checking if packages need to be installed..."
612
if npm run cmp-files -- package-lock.json .installed.package-lock.json; then

0 commit comments

Comments
 (0)