Skip to content

Commit 42e23bd

Browse files
Merge branch 'main' into checkout-action-version
2 parents b994f5d + a0dc1f7 commit 42e23bd

File tree

339 files changed

+8499
-14668
lines changed

Some content is hidden

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

339 files changed

+8499
-14668
lines changed

.github/workflows/feedback-prompt.yml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,32 @@ jobs:
4545
with:
4646
github-token: ${{ secrets.DOCS_BOT_PAT_BASE }}
4747
script: |
48-
// Get PR author username
4948
const pr = context.payload.pull_request;
5049
const prAuthor = pr.user.login;
50+
const assignees = (pr.assignees ?? [])
51+
.filter(a => a.login.toLowerCase() !== "copilot")
52+
.map(a => "@" + a.login)
53+
.join(" ");
5154
52-
// Compose the comment body as a plain text message to post on the PR
53-
const commentBody =
54-
"👋 @" + prAuthor +
55-
" - Please leave us feedback on your contributing experience! " +
56-
"To do this, please go to `#docs-contributor-feedback` on Slack.";
55+
let commentBody;
56+
57+
if (assignees) {
58+
commentBody =
59+
"👋 " + assignees +
60+
" - Please leave us feedback on your contributing experience! " +
61+
"To do this, please go to `#docs-contributor-feedback` on Slack.";
62+
} else if (prAuthor.toLowerCase() !== "copilot") {
63+
commentBody =
64+
"👋 @" + prAuthor +
65+
" - Please leave us feedback on your contributing experience! " +
66+
"To do this, please go to `#docs-contributor-feedback` on Slack.";
67+
} else {
68+
// nobody to mention!
69+
commentBody =
70+
"👋 Please leave us feedback on your contributing experience! " +
71+
"To do this, please go to `#docs-contributor-feedback` on Slack.";
72+
}
5773
58-
// Post the comment
5974
await github.rest.issues.createComment({
6075
owner: context.repo.owner,
6176
repo: context.repo.repo,

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Docs changelog
22

3+
**25 November 2025**
4+
5+
We've added details of files that are excluded from Copilot code reviews.
6+
7+
See [About GitHub Copilot code review](https://docs.github.com/copilot/concepts/agents/code-review#excluded-files).
8+
9+
<hr>
10+
11+
**24 November 2025**
12+
13+
We've added a new tutorial on burning down technical debt in a project:
14+
15+
[Using GitHub Copilot to reduce technical debt](https://docs.github.com/en/copilot/tutorials/reduce-technical-debt)
16+
17+
The addition of this tutorial was prompted by a presentation by Brittany Ellich at this year's GitHub Universe conference: [Tackling your tech debt with Copilot coding agent](https://www.youtube.com/watch?v=LafpndhNC_E), and is based on a GitHub community post by Akash Sharma: [Stop Letting Technical Debt Slow You Down](https://github.com/orgs/community/discussions/178975).
18+
19+
<hr>
20+
21+
**13 November 2025**
22+
23+
We've published a new tutorial on [using custom instructions for Copilot code review](https://docs.github.com/copilot/tutorials/use-custom-instructions). In this tutorial you'll learn how to write effective custom instructions that help Copilot provide more relevant and actionable code reviews.
24+
25+
<hr>
26+
327
**31 October 2025**
428

529
A large amount of new information was added to the GitHub documentation website to coincide with the GitHub Universe 2025 conference. Here are links to some of the new and updated articles.

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:20251016-101023-g0e97a15f4 AS base
11+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20251119-090131-gb27dc275c 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
51.2 KB
Loading
95.1 KB
Loading
70.2 KB
Loading
233 KB
Loading
-37 KB
Binary file not shown.
162 KB
Loading

content/actions/concepts/workflows-and-actions/reusing-workflow-configurations.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ Let's compare some aspects of each solution:
5656
| Called directly within a job, not from a step | Run as a step within a job |
5757
| Can contain multiple jobs | Does not contain jobs |
5858
| Each step is logged in real-time | Logged as one step even if it contains multiple steps |
59-
| Can connect a maximum of ten levels of workflows | Can be nested to have up to 10 composite actions in one workflow |
59+
| Can connect a maximum of {% ifversion fpt or ghec %}ten {% else %}four {% endif %}levels of workflows | Can be nested to have up to 10 composite actions in one workflow |
6060
| Can use secrets | Cannot use secrets |
61+
| Cannot be published to the [marketplace](https://github.com/marketplace?type=actions) | Can be published to the [marketplace](https://github.com/marketplace?type=actions) |
6162

6263
## Workflow templates
6364

0 commit comments

Comments
 (0)