Skip to content

Commit edc8484

Browse files
Merge branch 'main' into patch-1
2 parents 219b3a9 + 1a27b7b commit edc8484

File tree

169 files changed

+11889
-1795
lines changed

Some content is hidden

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

169 files changed

+11889
-1795
lines changed

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/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 %}

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ topics:
1919
shortTitle: View Git LFS usage
2020
---
2121

22-
{% data reusables.billing.enhanced-billing-platform %}
23-
2422
{% data reusables.large_files.owner_quota_only %} {% data reusables.large_files.does_not_carry %}
2523

2624
## Viewing storage and bandwidth usage for a personal account

content/billing/managing-billing-for-your-products/managing-billing-for-github-actions/about-billing-for-github-actions.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ topics:
1616
shortTitle: Billing for GitHub Actions
1717
---
1818

19-
{% data reusables.billing.enhanced-billing-platform %}
20-
2119
## About billing for {% data variables.product.prodname_actions %}
2220

2321
{% data reusables.billing.authorization-charge %}
@@ -33,7 +31,7 @@ Minutes reset every month, while storage usage does not.
3331
### Included storage and minutes
3432

3533
> [!NOTE]
36-
> * Included minutes cannot be used for larger runners. These runners will always be charged for, including in public repositories. For more information, see [AUTOTITLE](/billing/managing-billing-for-github-actions/about-billing-for-github-actions#per-minute-rates).
34+
> * Included minutes cannot be used for larger runners. These runners will always be charged for, including in public repositories. For more information, see [Per-minute rates](/billing/managing-billing-for-github-actions/about-billing-for-github-actions#per-minute-rates).
3735
> * Logs and job summaries do not count towards storage usage.
3836
3937
|Plan | Storage | Minutes (per month)|
@@ -44,13 +42,11 @@ Minutes reset every month, while storage usage does not.
4442
| {% data variables.product.prodname_team %} | 2 GB | 3,000 |
4543
| {% data variables.product.prodname_ghe_cloud %} | 50 GB | 50,000 |
4644

47-
The storage used by a repository is the total storage used by {% data variables.product.prodname_actions %} artifacts and {% data variables.product.prodname_registry %}. Your storage cost is the total usage for all repositories owned by your account. For more information about pricing for {% data variables.product.prodname_registry %}, see [AUTOTITLE](/billing/managing-billing-for-github-packages/about-billing-for-github-packages).
48-
49-
If your account's usage surpasses these limits and you have set a spending limit above $0 USD, you will pay $0.008 USD per GB of storage per day and per-minute usage depending on the operating system used by the {% data variables.product.prodname_dotcom %}-hosted runner. {% data variables.product.prodname_dotcom %} rounds the minutes and partial minutes each job uses up to the nearest whole minute.
45+
If your account's storage surpasses these limits and you have set a spending limit above $0 USD, you will pay $0.008 USD per GB of storage per day.
5046

5147
### Minute multipliers
5248

53-
Jobs that run on Windows and macOS runners that {% data variables.product.prodname_dotcom %} hosts consume minutes at 2 and 10 times the rate that jobs on Linux runners consume. For example, using 1,000 Windows minutes would consume 2,000 of the minutes included in your account. Using 1,000 macOS minutes, would consume 10,000 minutes included in your account.
49+
Jobs that run on Windows and macOS runners that {% data variables.product.prodname_dotcom %} hosts consume minutes at 2 and 10 times the rate that jobs on Linux runners consume.
5450

5551
| Operating system | Minute multiplier |
5652
|----------------- | ------------------|
@@ -59,10 +55,12 @@ Jobs that run on Windows and macOS runners that {% data variables.product.prodna
5955
| macOS | 10 |
6056

6157
> [!NOTE]
62-
> Minute multipliers do not apply to the per-minute rates shown below.
58+
> The billing dashboard may show your Actions usage as a dollar amount ("spend") rather than raw minutes. This amount already reflects the minute multipliers above. If you're using macOS or Windows runners, you will use up your included minutes more quickly
6359
6460
### Per-minute rates
6561

62+
{% data variables.product.github %} rounds the minutes and partial minutes each job uses up to the nearest whole minute.
63+
6664
#### Per-minute rates for standard runners
6765

6866
| Operating system | Per-minute rate (USD) |

0 commit comments

Comments
 (0)