Skip to content

Commit 27d20a7

Browse files
authored
Merge pull request #43245 from github/repo-sync
Repo sync
2 parents 55357fa + 68894b6 commit 27d20a7

File tree

9 files changed

+103
-8
lines changed

9 files changed

+103
-8
lines changed

CHANGELOG.md

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

3+
<<<<<<< changelog-update-1772664132
4+
**4 March 2026**
5+
6+
We've published a new article to coincide with the public preview of the Copilot coding agent for Jira integration.
7+
8+
See [Integrating Copilot coding agent with Jira](https://docs.github.com/copilot/how-tos/use-copilot-agents/coding-agent/integrate-coding-agent-with-jira).
9+
=======
10+
**5 March 2026**
11+
12+
We've updated our documentation to include a series of articles about the GitHub integration in Teams (previously, docs for the integration lived in a public repository).
13+
14+
See [GitHub integration in Teams](https://docs.github.com/integrations/how-tos/teams).
15+
>>>>>>> main
16+
17+
<hr>
18+
319
**3 March 2026**
420

521
We've added a new reference article, [Copilot customization cheat sheet](https://docs.github.com/copilot/reference/customization-cheat-sheet), to help you choose the right Copilot customization approach for your workflow.

content/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ shortTitle: Configure
3838

3939
{% data reusables.community.issue-forms-beta %}
4040

41-
With issue forms, you can create issue templates that have customizable web form fields. You can encourage contributors to include specific, structured information by using issue forms in your repository. Issue forms are written in YAML using the {% data variables.product.prodname_dotcom %} form schema. For more information, see [AUTOTITLE](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema). {% data reusables.actions.learn-more-about-yaml %}
41+
With issue forms, you can create issue templates that have customizable web form fields. You can encourage contributors to include specific, structured information by using issue forms in your repository.
42+
43+
{% ifversion issue-form-upload %}Issue forms support several field types, including text inputs, dropdowns, checkboxes, and file uploads.{% endif %} Issue forms are written in YAML using the {% data variables.product.prodname_dotcom %} form schema. For more information, see [AUTOTITLE](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema). {% data reusables.actions.learn-more-about-yaml %}
4244

4345
To use an issue form in your repository, you must create a new file and add it to the `.github/ISSUE_TEMPLATE` folder in your repository.
4446

content/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema.md

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For each form element, you can set the following keys.
5959
6060
| Key | Description | Required | Type | Default | Valid values |
6161
| --- | ----------- | -------- | ---- | ------- | ------- |
62-
| `type` | The type of element that you want to define. | {% octicon "check" aria-label="Required" %} | String | {% octicon "dash" aria-label="Not applicable" %} | <ul><li>`checkboxes`</li><li>`dropdown`</li><li>`input`</li><li>`markdown`</li><li>`textarea`</li></ul> |
62+
| `type` | The type of element that you want to define. | {% octicon "check" aria-label="Required" %} | String | {% octicon "dash" aria-label="Not applicable" %} | <ul><li>`checkboxes`</li><li>`dropdown`</li><li>`input`</li><li>`markdown`</li><li>`textarea`</li>{% ifversion issue-form-upload %}<li>`upload`</li>{% endif %}</ul> |
6363
| `id` | The identifier for the element, except when `type` is set to `markdown`. {% data reusables.form-schema.id-must-be-unique %} If provided, the `id` is the canonical identifier for the field in URL query parameter prefills. | {% octicon "x" aria-label="Optional" %} | String | {% octicon "dash" aria-label="Not applicable" %} | {% octicon "dash" aria-label="Not applicable" %} |
6464
| `attributes` | A set of key-value pairs that define the properties of the element. | {% octicon "check" aria-label="Required" %} | Map | {% octicon "dash" aria-label="Not applicable" %} | {% octicon "dash" aria-label="Not applicable" %} |
6565
| `validations` | A set of key-value pairs that set constraints on the element. | {% octicon "x" aria-label="Optional" %} | Map | {% octicon "dash" aria-label="Not applicable" %} | {% octicon "dash" aria-label="Not applicable" %} |
@@ -73,6 +73,9 @@ You can choose from the following types of form elements. Each type has unique a
7373
| [`input`](#input) | A single-line text field. |
7474
| [`dropdown`](#dropdown) | A dropdown menu. |
7575
| [`checkboxes`](#checkboxes) | A set of checkboxes. |
76+
| {% ifversion issue-form-upload %} |
77+
| [`upload`](#upload) | A file upload field. |
78+
| {% endif %} |
7679

7780
### `markdown`
7881

@@ -266,6 +269,58 @@ body:
266269
- label: Linux
267270
```
268271

272+
{% ifversion issue-form-upload %}
273+
274+
### `upload`
275+
276+
You can use an `upload` element to add a file upload field to your form. Contributors can drag and drop files or click to browse and select files directly within the form.
277+
278+
#### Supported file types and size limits
279+
280+
The following file types are accepted, subject to the size limits below:
281+
282+
| Category | Extensions | Size limit |
283+
|-----------| ---------- | -------- |
284+
| Archives | `.zip`, `.gz`, `.tar.gz` | 25 MB |
285+
| Documents | `.pdf`, `.docx`, `.xlsx`, `.pptx` | 25 MB |
286+
| Images | `.png`, `.jpg`, `.jpeg`, `.gif`, `.svg`, `.webp` | 10 MB |
287+
| Videos | `.mp4`, `.mov`, `.webm` | 100 MB |
288+
| Text | `.json`, `.py`, `.js`, `.ts`, `.log`, `.txt`, `.csv` | 25 MB |
289+
290+
#### Attributes for `upload`
291+
292+
{% data reusables.form-schema.attributes-intro %}
293+
294+
| Key | Description | Required | Type | Default | Valid values |
295+
| --- | ----------- | -------- | ---- | ------- | ------- |
296+
| `label` | A brief description of the expected file upload, which is displayed in the form. | {% octicon "check" aria-label="Required" %} | String | {% octicon "dash" aria-label="Not applicable" %} | {% octicon "dash" aria-label="Not applicable" %} |
297+
| `description` | A description of the file upload field to provide context or guidance, which is displayed in the form. | {% octicon "x" aria-label="Optional" %} | String | Empty String | {% octicon "dash" aria-label="Not applicable" %} |
298+
299+
#### Validations for `upload`
300+
301+
{% data reusables.form-schema.validations-intro %}
302+
303+
| Key | Description | Required | Type | Default | Valid values |
304+
| --- | ----------- | -------- | ---- | ------- | ------- |
305+
{% data reusables.form-schema.required-key %}
306+
| `accept` | A comma-separated list of file extensions that are accepted. If omitted, all supported file types are accepted. | {% octicon "x" aria-label="Optional" %} | String | {% octicon "dash" aria-label="Not applicable" %} | {% octicon "dash" aria-label="Not applicable" %} |
307+
308+
#### Example of `upload`
309+
310+
```yaml copy
311+
body:
312+
- type: upload
313+
id: screenshots
314+
attributes:
315+
label: Upload relevant files
316+
description: "Drag and drop any relevant screenshots or log files."
317+
validations:
318+
required: false
319+
accept: ".png,.jpg,.gif,.log,.txt,.zip"
320+
```
321+
322+
{% endif %}
323+
269324
## Further reading
270325

271326
* [YAML](https://yaml.org)

content/copilot/concepts/tools/about-copilot-integrations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Currently, {% data variables.copilot.copilot_coding_agent %} supports integratio
2525
* **Slack**: [AUTOTITLE](/copilot/how-tos/use-copilot-agents/coding-agent/integrate-coding-agent-with-slack) - Learn how to set up the Slack integration to trigger {% data variables.copilot.copilot_coding_agent %} directly from your Slack workspace.
2626
* **Linear**: [AUTOTITLE](/copilot/how-tos/use-copilot-agents/coding-agent/integrate-coding-agent-with-linear) - Learn how to set up the Linear integration to trigger {% data variables.copilot.copilot_coding_agent %} directly from your Linear issues.
2727
* **Azure Boards**: [AUTOTITLE](/copilot/how-tos/use-copilot-agents/coding-agent/integrate-coding-agent-with-azure-boards) - Learn how to set up the Azure Boards integration to trigger {% data variables.copilot.copilot_coding_agent %} directly from your Azure Boards work items.
28+
* **Jira**: [AUTOTITLE](/copilot/how-tos/use-copilot-agents/coding-agent/integrate-coding-agent-with-jira) - Learn how to set up the Jira integration to trigger {% data variables.copilot.copilot_coding_agent %} directly from your Jira workspace.
2829

2930
## Benefits of integrations
3031

content/copilot/how-tos/use-copilot-agents/coding-agent/review-copilot-prs.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ category:
2424
After {% data variables.product.prodname_copilot_short %} has finished working on a coding task, and has requested a pull request review from you, you should review {% data variables.product.prodname_copilot_short %}'s work thoroughly before merging the pull request.
2525

2626
> [!IMPORTANT]
27-
> If you have branch protection rules that require pull request approvals, and you initiate a pull request by assigning an issue to {% data variables.product.prodname_copilot_short %}, you can approve the pull request, but **your approval won't count** toward the required number of approvals. Someone else must approve the pull request for it to be merged.
28-
>
29-
> Additionally, if the "Require approval of the most recent reviewable push" setting is enabled, the final push to the pull request will require **n + 1 approvals**, where _n_ is the number of required approvals. The person who initiated the original {% data variables.product.prodname_copilot_short %} pull request can't be counted among the required reviewers for that final push—but if someone else requested the latest {% data variables.product.prodname_copilot_short %}-generated change, their approval **can** count.
27+
> If you have rules or branch protections that require pull request approvals, and you ask {% data variables.product.prodname_copilot_short %} to create a pull request, you can approve the pull request, but **your approval won't count** toward the required number of approvals. Someone else must approve the pull request for it to be merged.
3028
3129
You can ask {% data variables.product.prodname_copilot_short %} to make changes by mentioning `@copilot` in pull request comments, or you can check out {% data variables.product.prodname_copilot_short %}'s branch and make changes yourself.
3230

content/issues/planning-and-tracking-with-projects/understanding-fields/about-iteration-fields.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,14 @@ You can insert breaks into your iterations to communicate when you are taking ti
6262
![Screenshot of the list of iterations for a project. On the line dividing two iterations, a button, labeled "Insert break," is outlined in orange.](/assets/images/help/issues/iteration-insert-break.png)
6363
1. Optionally, to change the duration of the break, click on the date to open the calendar. Click on the start day, then click the end day, and then click **Apply**.
6464
1. Click **Save changes**.
65+
66+
## Moving items between iterations
67+
68+
When a project view is grouped by an iteration field, you can bulk-move all items from one iteration to another. This is useful for rolling over unfinished work to the next sprint, rescheduling items during reprioritization, or clearing a backlog iteration.
69+
70+
1. Navigate to your project.
71+
1. In your project, group a view by an iteration field. For more information, see [AUTOTITLE](/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/customizing-the-table-layout#grouping-by-field-values).
72+
1. Click {% octicon "kebab-horizontal" aria-label="iteration options" %} in the group header for the iteration you want to move items from.
73+
1. Click **Move items to...**.
74+
1. Select the target iteration you want to move the items to.
75+
1. Confirm the move. All items in the group are updated to the target iteration.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Reference: https://github.com/github/releases/issues/7534
2+
# File upload field in issue forms
3+
versions:
4+
fpt: '*'
5+
ghec: '*'
6+
ghes: '>= 3.21'

data/reusables/community/issue-forms-sample.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,12 @@ body:
6363
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com).
6464
options:
6565
- label: I agree to follow this project's Code of Conduct
66-
required: true
66+
required: true{% ifversion issue-form-upload %}
67+
- type: upload
68+
id: screenshots
69+
attributes:
70+
label: Upload screenshots
71+
description: If applicable, add screenshots to help explain your problem.
72+
validations:
73+
required: false{% endif %}
6774
```
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
1. Click {% octicon "triangle-down" aria-label="View options" %} next to the name of the currently open view.
1+
1. Click **{% octicon "gear" aria-label="View options" %} View** next to the search bar of the currently open view.
22

3-
![Screenshot showing the tabs at the top of a project. The view menu icon is highlighted with an orange outline.](/assets/images/help/projects-v2/view-menu-icon.png)

0 commit comments

Comments
 (0)