Skip to content

Commit ca40e81

Browse files
authored
Merge pull request #40962 from github/repo-sync
Repo sync
2 parents 4654936 + 19e529a commit ca40e81

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ shortTitle: Configure
2222
{% data reusables.repositories.sidebar-settings %}
2323
1. In the "Features" section, under **Issues**, click **Set up templates**. You may need to enable **Issues** and refresh the page before you can see the button.
2424

25-
![Screenshot of the "Features" section of a repository's settings, with the "Issues" setting ticked and the green "Set up templates" button visible.](/assets/images/help/repository/set-up-issue-templates-button.png)
25+
![Screenshot of the "Features" section of a repository's settings, with the "Issues" setting ticked and the green "Set up templates" button visible.](/assets/images/help/repository/set-up-issue-templates-button.png)
2626
1. Use the **Add template** dropdown menu, and click on the type of template you'd like to create.
2727

2828
![Screenshot of the "Add template" dropdown menu expanded to show standard templates, "Bug report" and "Feature request," with a "Custom template".](/assets/images/help/repository/add-template-drop-down-menu.png)
2929
1. To preview or edit the template before committing it to the repository, next to the template, click **Preview and edit**.
3030
1. To edit the template, click {% octicon "pencil" aria-label="Edit template" %}, and type in the fields to edit their contents.
3131

3232
![Screenshot of the preview of an issue template. To the right of the template name, a pencil icon is outlined in dark orange.](/assets/images/help/repository/issue-template-edit-button.png)
33-
1. To automatically set a default issue title, assign the issue to people with read access to the repository, or apply labels to issues raised from the template, use the fields under "Optional additional information." You can also add these details in the issue template with `title`, `labels`, or `assignees` in a YAML frontmatter format.
33+
1. To automatically set a default issue title, assign the issue to people with read access to the repository, or apply labels to issues raised from the template, use the fields under "Optional additional information." You can also add these details in the issue template with `title`, `labels`, `type`, or `assignees` in a YAML frontmatter format.
3434
1. When you're finished editing and previewing your template, click **Propose changes** in the upper right corner of the page.
3535
1. In the "Commit message" field, type a commit message describing your changes.
3636
1. Below the commit message fields, select whether to commit your template directly to the default branch, or to create a new branch and open a pull request. For more information about pull requests, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests).

content/enterprise-onboarding/index.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,26 @@ journeyTracks:
4040
- '/enterprise-onboarding/support-for-your-enterprise/understanding-support'
4141
- '/enterprise-onboarding/support-for-your-enterprise/using-the-support-portal'
4242
- '/enterprise-onboarding/support-for-your-enterprise/managing-support-entitlements'
43+
- id: 'github_actions'
44+
title: 'Getting started with GitHub Actions'
45+
description: 'Learn how to plan and implement a rollout of {% data variables.product.prodname_actions %} for your enterprise.'
46+
guides:
47+
- '/enterprise-onboarding/github-actions-for-your-enterprise/about-github-actions-for-enterprises'
48+
- '/enterprise-onboarding/github-actions-for-your-enterprise/understanding-github-actions'
49+
- '/enterprise-onboarding/github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise'
50+
- '/enterprise-onboarding/github-actions-for-your-enterprise/migrating-your-enterprise-to-github-actions'
51+
- '/enterprise-onboarding/github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-cloud'
52+
- '/enterprise-onboarding/github-actions-for-your-enterprise/security-hardening-for-github-actions'
53+
- '/enterprise-onboarding/github-actions-for-your-enterprise/about-billing-for-github-actions'
54+
- id: 'feature_enhancements'
55+
title: 'Enhancing your experience'
56+
description: 'Take advantage of features available with {% data variables.product.prodname_ghe_cloud %}.'
57+
guides:
58+
- '/enterprise-onboarding/feature-enhancements/about-the-audit-log-for-your-enterprise'
59+
- '/enterprise-onboarding/feature-enhancements/about-access-permissions-on-github'
60+
- '/enterprise-onboarding/feature-enhancements/about-rulesets'
61+
- '/enterprise-onboarding/feature-enhancements/create-a-readme-for-your-enterprise'
62+
- '/enterprise-onboarding/feature-enhancements/about-enterprise-security'
4363
versions:
4464
ghec: '*'
4565
topics:

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ title: "[Bug]: "
55
labels: ["bug", "triage"]
66
projects: ["octo-org/1", "octo-org/44"]
77
assignees:
8-
- octocat
8+
- octocat{% ifversion issue-types %}
9+
type: bug{% endif %}
910
body:
1011
- type: markdown
1112
attributes:
@@ -59,7 +60,7 @@ body:
5960
id: terms
6061
attributes:
6162
label: Code of Conduct
62-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com).
63+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com).
6364
options:
6465
- label: I agree to follow this project's Code of Conduct
6566
required: true

0 commit comments

Comments
 (0)