Skip to content

Commit 9196cbd

Browse files
authored
Merge pull request #45357 from github/repo-sync
Repo sync
2 parents 78a0b0e + dda4c72 commit 9196cbd

51 files changed

Lines changed: 71831 additions & 2364 deletions

File tree

Some content is hidden

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

content/actions/reference/workflows-and-actions/expressions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,8 @@ Creates a hash for all `.rb` files in the `lib` directory at root level, includi
275275

276276
`hashFiles('/lib/**/*.rb', '!/lib/foo/*.rb')`
277277

278+
{% ifversion fpt or ghec %}
279+
278280
### case
279281

280282
`case( pred1, val1, pred2, val2, ..., default )`
@@ -313,6 +315,8 @@ env:
313315

314316
Sets `MY_ENV_VAR` based on the branch: `production` for `main`, `staging` for `staging`, `development` for branches starting with `feature/`, or `unknown` for all other branches.
315317

318+
{% endif %}
319+
316320
## Status check functions
317321

318322
You can use the following status check functions as expressions in `if` conditionals. A default status check of `success()` is applied unless you include one of these functions. For more information about `if` conditionals, see [AUTOTITLE](/actions/reference/workflows-and-actions/workflow-syntax#jobsjob_idif) and [AUTOTITLE](/actions/reference/workflows-and-actions/metadata-syntax#runsstepsif).

content/code-security/how-tos/manage-security-alerts/manage-code-scanning-alerts/enable-delegated-alert-dismissal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ category:
1515
- Find and fix code vulnerabilities
1616
---
1717

18-
{% data reusables.security.delegated-alert-dismissal-capacity %}
18+
>[!NOTE] {% data reusables.security.delegated-alert-dismissal-capacity %}
1919
2020
## Configuring delegated dismissal for a repository
2121

content/code-security/how-tos/manage-security-alerts/manage-dependabot-alerts/enable-delegated-alert-dismissal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ category:
1212
- Secure your dependencies
1313
---
1414

15-
{% data reusables.security.delegated-alert-dismissal-capacity %}
15+
>[!NOTE] {% data reusables.security.delegated-alert-dismissal-capacity %}
1616
1717
## Configuring delegated dismissal for a repository
1818

content/code-security/how-tos/manage-security-alerts/manage-secret-scanning-alerts/enable-delegated-dismissal.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ category:
1616
- Protect your secrets
1717
---
1818

19-
{% data reusables.security.delegated-alert-dismissal-capacity %}
19+
>[!NOTE]
20+
> {% data reusables.security.delegated-alert-dismissal-capacity %}
21+
>
22+
> Alert dismissal requests expire after 1 week. After this, dismissal requests must be resubmitted.
2023
2124
## Configuring delegated dismissal for a repository
2225

@@ -55,4 +58,4 @@ To learn more about security configurations, see [AUTOTITLE](/code-security/conc
5558

5659
## Next steps
5760

58-
Now that you have enabled delegated alert dismissal for {% data variables.product.prodname_secret_scanning %}, you should regularly review alert dismissal requests to maintain an accurate alert count and unblock your developers. See [AUTOTITLE](/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/review-alert-dismissal-requests).
61+
Now that you have enabled delegated alert dismissal for {% data variables.product.prodname_secret_scanning %}, you should regularly review alert dismissal requests to maintain an accurate alert count and unblock your developers. See [AUTOTITLE](/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/review-alert-dismissal-requests).

content/rest/pulls/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ versions:
1111
ghes: '*'
1212
ghec: '*'
1313
children:
14-
- /pulls
1514
- /comments
15+
- /pulls
1616
- /review-requests
1717
- /reviews
18+
- /stacks
1819
autogenerated: rest
1920
---
2021

content/rest/pulls/stacks.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: REST API endpoints for stacked pull requests
3+
shortTitle: Stacked pull requests
4+
intro: Use the REST API to interact with stacked pull requests.
5+
versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖
6+
fpt: '*'
7+
ghec: '*'
8+
autogenerated: rest
9+
category:
10+
- Manage issues, pull requests, and projects
11+
allowTitleToDifferFromFilename: true
12+
---
13+
14+
<!-- Content after this section is automatically generated -->

data/features/org-private-registry-oidc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
versions:
66
fpt: '*'
77
ghec: '*'
8+
ghes: '>=3.22'

data/llms-txt/docs.md

Lines changed: 80 additions & 65 deletions
Large diffs are not rendered by default.

data/release-notes/enterprise-server/3-21/0-rc1.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,6 @@ sections:
135135
# https://github.com/github/releases/issues/7290
136136
- |
137137
When a workflow job is skipped because of an `if:` conditional, the job log now shows how the conditional expression was evaluated. This helps users verify whether a job was skipped for the expected reason or if there is an error in their workflow logic.
138-
# https://github.com/github/releases/issues/7112
139-
- |
140-
{% data variables.product.prodname_actions %} expressions support a new `case` function that enables conditional logic (if/else if/else) directly within workflow expressions. Users can use the `case` function to select values based on conditions without needing to store that logic externally.
141138
# https://github.com/github/releases/issues/7074
142139
- |
143140
The {% data variables.product.prodname_actions %} workflow visualization page now supports rendering workflows with more than 300 jobs. Jobs are lazy loaded to prevent page errors when viewing large workflows. This feature is in public preview and subject to change.

data/release-notes/enterprise-server/3-21/0.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,6 @@ sections:
131131
# https://github.com/github/releases/issues/7290
132132
- |
133133
When a workflow job is skipped because of an `if:` conditional, the job log now shows how the conditional expression was evaluated. This helps users verify whether a job was skipped for the expected reason or if there is an error in their workflow logic.
134-
# https://github.com/github/releases/issues/7112
135-
- |
136-
{% data variables.product.prodname_actions %} expressions support a new `case` function that enables conditional logic (if/else if/else) directly within workflow expressions. Users can use the `case` function to select values based on conditions without needing to store that logic externally.
137134
# https://github.com/github/releases/issues/7074
138135
- |
139136
The {% data variables.product.prodname_actions %} workflow visualization page now supports rendering workflows with more than 300 jobs. Jobs are lazy loaded to prevent page errors when viewing large workflows. This feature is in public preview and subject to change.
@@ -298,4 +295,6 @@ sections:
298295
299296
errata:
300297
- |
301-
These release notes previously included a note about pull requeset reviewers being able to comment on any line of a changed file, not just lines within the diff. The note was added prematurely and has been removed. We will republish it when the feature is ready. [Updated: 2026-06-23]
298+
These release notes previously included a note about pull requeset reviewers being able to comment on any line of a changed file, not just lines within the diff. The note was added prematurely and has been removed. We will republish it when the feature is ready. [Updated: 2026-06-23]
299+
- |
300+
These release notes incorrecly indicated that the `case` function is supported in {% data variables.product.prodname_actions %} expressions. [Updated: 2026-07-30]

0 commit comments

Comments
 (0)