Skip to content

Commit b2d7317

Browse files
authored
Merge branch 'main' into update_jfrog_docs
2 parents fe5153a + 032824b commit b2d7317

File tree

189 files changed

+12978
-1926
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+12978
-1926
lines changed

.github/workflows/index-general-search.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ jobs:
108108
# the whole job fast.
109109
# As of June 2023, it takes about 10+ minutes to index one whole
110110
# language and we have 8 non-English languages.
111-
max-parallel: 3
111+
# As of May 2025, we index so many pages that we are being rate-limited by
112+
# Elasticsearch. So we are shrinking this value to 2, down from 3
113+
max-parallel: 2
112114
matrix:
113115
language: ${{ fromJSON(needs.figureOutMatrix.outputs.matrix) }}
114116
steps:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# ---------------------------------------------------------------
99
# To update the sha:
1010
# https://github.com/github/gh-base-image/pkgs/container/gh-base-image%2Fgh-base-noble
11-
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250501-005451-g595789ae2 AS base
11+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250522-041000-g9c0993b27 AS base
1212

1313
# Install curl for Node install and determining the early access branch
1414
# Install git for cloning docs-early-access & translations repos
2.47 KB
Loading
-148 KB
Binary file not shown.

content/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ on:
388388

389389
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
390390
| --------------------- | -------------- | ------------ | -------------|
391-
| [`page_build`](/webhooks-and-events/webhooks/webhook-events-and-payloads#page_build) | Not applicable | Last commit on default branch | Not applicable |
391+
| [`page_build`](/webhooks-and-events/webhooks/webhook-events-and-payloads#page_build) | Not applicable | Last commit on default branch | Default branch |
392392

393393
{% data reusables.actions.branch-requirement %}
394394

@@ -900,18 +900,6 @@ on:
900900
- '**.js'
901901
```
902902

903-
> [!NOTE]
904-
> {% data reusables.actions.branch-paths-filter %} For example, the following workflow will only run when a push that includes a change to a JavaScript (`.js`) file is made to a branch whose name starts with `releases/`:
905-
>
906-
> ```yaml
907-
> on:
908-
> push:
909-
> branches:
910-
> - 'releases/**'
911-
> paths:
912-
> - '**.js'
913-
> ```
914-
915903
## `registry_package`
916904

917905
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
@@ -1082,7 +1070,7 @@ Notifications for scheduled workflows are sent to the user who last modified the
10821070

10831071
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
10841072
| --------------------- | -------------- | ------------ | -------------|
1085-
| [`status`](/webhooks-and-events/webhooks/webhook-events-and-payloads#status) | Not applicable | Last commit on default branch | Not applicable |
1073+
| [`status`](/webhooks-and-events/webhooks/webhook-events-and-payloads#status) | Not applicable | Last commit on default branch | Default branch |
10861074

10871075
{% data reusables.actions.branch-requirement %}
10881076

content/admin/data-residency/network-details-for-ghecom.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ If you use Azure private networking for {% data variables.product.company_short
7373

7474
| Runner type | Supported regions |
7575
| ----------- | ----------------- |
76-
| x64 | `francecentral`, `swedencentral`, `germanywestcentral` |
76+
| x64 | `francecentral`, `swedencentral`, `germanywestcentral`, `northeurope` |
7777
| arm64 | `francecentral`, `northeurope`, `germanywestcentral` |
7878
| GPU | `italynorth`, `swedencentral` |
7979

@@ -83,7 +83,7 @@ If you use Azure private networking for {% data variables.product.company_short
8383
| ----------- | ----------------- |
8484
| x64 | `australiaeast`, `australiacentral` |
8585
| arm64 | `australiaeast`, `australiacentral` |
86-
| GPU | N/A |
86+
| GPU | `australiaeast`, `australiacentral` |
8787

8888
### Supported regions in the US
8989

content/apps/creating-github-apps/about-creating-github-apps/best-practices-for-creating-a-github-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The private key for your {% data variables.product.prodname_github_app %} grants
4040

4141
Consider storing your {% data variables.product.prodname_github_app %}'s private key in a key vault, such as [Azure Key Vault](https://azure.microsoft.com/en-gb/products/key-vault), and making it sign-only.
4242

43-
Alternatively, you can store the key as an environment variable. However, this not as strong as storing the key in a key vault. If an attacker gains access to the environment, they can read the private key and gain persistent authentication as the {% data variables.product.prodname_github_app %}.
43+
Alternatively, you can store the key as an environment variable. However, this is not as strong as storing the key in a key vault. If an attacker gains access to the environment, they can read the private key and gain persistent authentication as the {% data variables.product.prodname_github_app %}.
4444

4545
You should never hard code your private key in your app, even if your code is stored in a private repository. If your app is a native client, client-side app, or runs on a user device (as opposed to running on your servers), you should never ship your private key with your app.
4646

@@ -122,7 +122,7 @@ Only subscribe to the webhook events that your app needs. This will help reduce
122122

123123
## Use a webhook secret
124124

125-
You should set a webhook secret for your {% data variables.product.prodname_github_app %} and verify that the signature of incoming webhook events match the secret. This helps to ensure that the incoming webhook event is a valid {% data variables.product.company_short %} event.
125+
You should set a webhook secret for your {% data variables.product.prodname_github_app %} and verify that the signature of incoming webhook events matches the secret. This helps to ensure that the incoming webhook event is a valid {% data variables.product.company_short %} event.
126126

127127
For more information, see [AUTOTITLE](/apps/creating-github-apps/setting-up-a-github-app/using-webhooks-with-github-apps#securing-your-webhooks-with-a-webhook-secret). For an example, see [AUTOTITLE](/apps/creating-github-apps/guides/building-a-github-app-that-responds-to-webhook-events).
128128

content/billing/managing-billing-for-your-products/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ topics:
2020
shortTitle: Downgrade Git LFS storage
2121
---
2222

23-
{% data reusables.billing.enhanced-billing-platform %}
24-
2523
When you downgrade your number of data packs, your change takes effect on your next billing date. For more information, see [AUTOTITLE](/billing/managing-billing-for-your-products/managing-billing-for-git-large-file-storage/about-billing-for-git-large-file-storage).
2624

2725
## Downgrading storage and bandwidth for a personal account

content/billing/managing-billing-for-your-products/managing-billing-for-git-large-file-storage/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ children:
2020
- /downgrading-git-large-file-storage
2121
---
2222

23-
{% data reusables.billing.enhanced-billing-platform %}

content/billing/managing-billing-for-your-products/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ topics:
2020
shortTitle: Upgrade Git LFS storage
2121
---
2222

23-
{% data reusables.billing.enhanced-billing-platform %}
24-
2523
## Purchasing additional storage and bandwidth for a personal account
2624

2725
{% data reusables.user-settings.access_settings %}

0 commit comments

Comments
 (0)