Merge branch 'main' into patch-1

This commit is contained in:
Janice 2020-10-27 13:02:56 -07:00 коммит произвёл GitHub
Родитель 813d0d22a7 c6b7f6a98b
Коммит a55b7af98a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
44 изменённых файлов: 423 добавлений и 382 удалений

Просмотреть файл

@ -16,7 +16,7 @@ See the [contributing docs](/CONTRIBUTING.md) for general information about work
- [`product`](#product)
- [`layout`](#layout)
- [`mapTopic`](#maptopic)
- [`gettingStartedLinks` and `popularLinks`](#gettingstartedlinks-and-popularlinks)
- [`featuredLinks`](#featuredlinks)
- [`showMiniToc`](#showminitoc)
- [`miniTocMaxHeadingLevel`](#minitocmaxheadinglevel)
- [`allowTitleToDifferFromFilename`](#allowtitletodifferfromfilename)
@ -132,12 +132,22 @@ For a layout named `layouts/article.html`, the value would be `article`.
- Type: `Boolean`. Default is `false`.
- Optional.
### `gettingStartedLinks` and `popularLinks`
### `featuredLinks`
- Purpose: Renders the linked articles' titles and intros under `Getting started` and `Popular articles` headings, respectively. See site homepage for an example.
- Type: `Array`.
- Purpose: Renders the linked articles' titles and intros on product landing pages and the homepage.
- Type: `Object`.
- Optional.
Example:
```yaml
featuredLinks:
gettingStarted:
- /path/to/page
guides:
- /guides/example
```
### `showMiniToc`
- Purpose: Indicates whether an article should show a mini TOC above the rest of the content. See [Autogenerated mini TOCs](#autogenerated-mini-tocs) for more info.

Просмотреть файл

@ -5,15 +5,16 @@ intro: 'Automate, customize, and execute your software development workflows rig
introLinks:
quickstart: /actions/quickstart
learn: /actions/learn-github-actions
gettingStartedLinks:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
guideLinks:
- /actions/guides/setting-up-continuous-integration-using-workflow-templates
- /actions/guides/about-packaging-with-github-actions
popularLinks:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
featuredLinks:
gettingStarted:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
guide:
- /actions/guides/setting-up-continuous-integration-using-workflow-templates
- /actions/guides/about-packaging-with-github-actions
popular:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
redirect_from:
- /articles/automating-your-workflow-with-github-actions/
- /articles/customizing-your-project-with-github-actions/
@ -42,7 +43,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.guides %}</h3>
</div>
<ul class="list-style-none">
{% for link in guideLinks %}
{% for link in featuredLinks.guide %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -53,7 +54,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
<ul class="list-style-none">
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -64,7 +65,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">Manage workflows</h3>
</div>
<ul class="list-style-none">
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>

Просмотреть файл

@ -12,7 +12,7 @@ Before you can sync your fork with an upstream repository, you must [configure a
{% data reusables.command_line.open_the_multi_os_terminal %}
2. Change the current working directory to your local project.
3. Fetch the branches and their respective commits from the upstream repository. Commits to `master` will be stored in a local branch, `upstream/master`.
3. Fetch the branches and their respective commits from the upstream repository. Commits to `main` will be stored in a local branch, `upstream/main`.
```shell
$ git fetch upstream
> remote: Counting objects: 75, done.

Просмотреть файл

@ -1,16 +1,17 @@
---
title: '{% data variables.product.product_name %}{% if currentVersion == "free-pro-team@latest" %}.com{% endif %} Help Documentation'
gettingStartedLinks:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popularLinks:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
featuredLinks:
gettingStarted:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popular:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
versions: '*'
---

Просмотреть файл

@ -2,14 +2,15 @@
title: GitHub Insights Documentation
shortTitle: GitHub Insights
intro: 'Understand and improve your software delivery process through data with {% data variables.product.prodname_insights %}. You can view customized reports based on data from {% data variables.product.prodname_enterprise %}.'
gettingStartedLinks:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popularLinks:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
featuredLinks:
gettingStarted:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popular:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
redirect_from:
- /github/installing-and-configuring-github-insights
versions:

Просмотреть файл

@ -2,18 +2,19 @@
title: GitHub Packages Documentation
shortTitle: GitHub Packages
intro: 'Learn to safely publish and consume packages, store your packages alongside your code, and share your packages privately with your team or publicly with the open source community. You can also automate your packages with {% data variables.product.prodname_actions %}.'
gettingStartedLinks:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popularLinks:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
featuredLinks:
gettingStarted:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popular:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
redirect_from:
- /github/managing-packages-with-github-packages
- /categories/managing-packages-with-github-package-registry

Просмотреть файл

@ -63,7 +63,7 @@
</div>
</div>
<div id="article-contents" class="article-grid-body">
{% if gettingStartedLinks and popularLinks %}
{% if featuredLinks.gettingStarted and featuredLinks.popular %}
{% include featured-links %}
{% endif %}
{{ renderedPage }}

Просмотреть файл

@ -7,7 +7,7 @@
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
</div>
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
{% include featured-link %}
{% endfor %}
</div>
@ -18,7 +18,7 @@
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
{% include featured-link %}
{% endfor %}
</div>

Просмотреть файл

@ -13,7 +13,7 @@ const plans = [
releases: [latestNonNumberedRelease],
latestRelease: latestNonNumberedRelease,
nonEnterpriseDefault: true, // permanent way to refer to this plan if the name changes
openApiBaseName: 'dotcom'
openApiBaseName: 'api.github.com'
},
{
plan: 'enterprise-server',
@ -21,7 +21,7 @@ const plans = [
releases: enterpriseServerReleases.supported,
latestRelease: enterpriseServerReleases.latest,
hasNumberedReleases: true,
openApiBaseName: ''
openApiBaseName: 'ghes-'
}
]

Просмотреть файл

@ -52,15 +52,6 @@ const schema = {
redirect_from: {
type: ['array', 'string']
},
gettingStartedLinks: {
type: 'array'
},
popularLinks: {
type: 'array'
},
guideLinks: {
type: 'array'
},
allowTitleToDifferFromFilename: {
type: 'boolean'
},
@ -70,6 +61,16 @@ const schema = {
quickstart: { type: 'string' },
learn: { type: 'string' }
}
},
featuredLinks: {
type: 'object',
additionalProperties: false,
patternProperties: {
'^[a-zA-Z-_]+$': {
type: 'array',
items: { type: 'string' }
}
}
}
}
}

Просмотреть файл

@ -59,15 +59,6 @@ class Page {
this.rawProduct = this.product
this.rawPermissions = this.permissions
// Store raw data so we can access/modify it later in middleware
this.rawGettingStartedLinks = this.gettingStartedLinks
this.rawPopularLinks = this.popularLinks
this.rawGuideLinks = this.guideLinks
// Do not need to keep the original props
delete this.gettingStartedLinks
delete this.popularLinks
delete this.guideLinks
// a page should only be available in versions that its parent product is available in
const versionsParentProductIsNotAvailableIn = getApplicableVersions(this.versions, this.fullPath)
// only the homepage will not have this.parentProduct

Просмотреть файл

@ -7,6 +7,10 @@ let allCategories = []
allVersionKeys.forEach(currentVersion => {
// Translate the versions from the openapi to versions used in the docs
const openApiVersion = allVersions[currentVersion].openApiVersionName
// Check that the openApiVersion is configured in the OpenAPI
if (!operations[openApiVersion]) return
operations[currentVersion] = operations[openApiVersion]
delete operations[openApiVersion]

Просмотреть файл

@ -8,9 +8,12 @@ module.exports = async (req, res, next) => {
if (!(req.context.page.relativePath.endsWith('index.md') || req.context.page.layout === 'product-landing')) return next()
req.context.gettingStartedLinks = await getLinkData(req.context.page.rawGettingStartedLinks, req.context)
req.context.popularLinks = await getLinkData(req.context.page.rawPopularLinks, req.context)
req.context.guideLinks = await getLinkData(req.context.page.rawGuideLinks, req.context)
if (!req.context.page.featuredLinks) return next()
req.context.featuredLinks = {}
for (const key in req.context.page.featuredLinks) {
req.context.featuredLinks[key] = await getLinkData(req.context.page.featuredLinks[key], req.context)
}
return next()
}

6
package-lock.json сгенерированный
Просмотреть файл

@ -1156,9 +1156,9 @@
}
},
"@github/rest-api-operations": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@github/rest-api-operations/-/rest-api-operations-3.2.1.tgz",
"integrity": "sha512-GRJ5NtdWAvamDHXMfmwCNZ7O3TI/h79MyloWnHH+uWEN37DJadpbg3l3tIN2QyC/sZU1lk3o90YhiRaPC80muA=="
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@github/rest-api-operations/-/rest-api-operations-3.2.2.tgz",
"integrity": "sha512-mCZ3caASdKyR7dEBWMpEbdUpo54EHpWAKdiK57jIfXzgCUhlQqH48gPhcsrdiRTmofUDfsXHFmvH05ERdraZHQ=="
},
"@hapi/address": {
"version": "2.1.4",

Просмотреть файл

@ -16,7 +16,7 @@
"@github-docs/data-directory": "^1.2.0",
"@github-docs/frontmatter": "^1.3.1",
"@github-docs/render-content": "^5.2.0",
"@github/rest-api-operations": "^3.2.1",
"@github/rest-api-operations": "^3.2.2",
"@octokit/rest": "^16.38.1",
"@primer/css": "^15.1.0",
"@primer/octicons": "^11.0.0",

Просмотреть файл

@ -3,7 +3,7 @@ const enterpriseServerReleases = require('../../lib/enterprise-server-releases')
const japaneseCharacters = require('japanese-characters')
const nonEnterpriseDefaultVersion = require('../../lib/non-enterprise-default-version')
describe('gettingStartedLinks and popularLinks', () => {
describe('featuredLinks', () => {
jest.setTimeout(3 * 60 * 1000)
describe('rendering', () => {
@ -55,7 +55,7 @@ describe('gettingStartedLinks and popularLinks', () => {
describe('context.page object', () => {
test('returns modified array of links', async () => {
const gettingStartedLinks = await getJSON('/en?json=gettingStartedLinks')
const gettingStartedLinks = await getJSON('/en?json=featuredLinks.gettingStarted')
const expectedFirstLink = {
href: `/en/${nonEnterpriseDefaultVersion}/github/getting-started-with-github/set-up-git`,
title: 'Set up Git'
@ -66,7 +66,7 @@ describe('gettingStartedLinks and popularLinks', () => {
})
test('returns raw array of links on the page object', async () => {
const rawGettingStartedLinks = await getJSON('/en?json=page.rawGettingStartedLinks')
const rawGettingStartedLinks = await getJSON('/en?json=page.featuredLinks.gettingStarted')
expect(rawGettingStartedLinks[0]).toEqual('/github/getting-started-with-github/set-up-git')
})
})

Просмотреть файл

@ -2,15 +2,16 @@
title: Dokumentation zu GitHub Actions
shortTitle: GitHub Actions
intro: 'Mit {% data variables.product.prodname_actions %} kannst Du Deine Softwareentwicklungs-Workflows direkt in Ihrem Repository automatisieren, anpassen und ausführen. Du kannst Actions entdecken, erstellen und weitergeben, um beliebige Aufträge (einschließlich CI/CD) auszuführen. Du kannst auch Actions in einem vollständig angepassten Workflow kombinieren.'
gettingStartedLinks:
- /actions/quickstart
- /actions/learn-github-actions
guideLinks:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popularLinks:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
featuredLinks:
gettingStarted:
- /actions/quickstart
- /actions/learn-github-actions
guide:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popular:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
redirect_from:
- /articles/automating-your-workflow-with-github-actions/
- /articles/customizing-your-project-with-github-actions/
@ -39,7 +40,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
</div>
<ul class="list-style-none">
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -50,7 +51,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
<ul class="list-style-none">
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -61,7 +62,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">Manage workflows</h3>
</div>
<ul class="list-style-none">
{% for link in guideLinks %}
{% for link in featuredLinks.guide %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>

Просмотреть файл

@ -1,16 +1,17 @@
---
title: '{% data variables.product.product_name %}{% if currentVersion == "free-pro-team@latest" %}.com{% endif %} Help Documentation'
gettingStartedLinks:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popularLinks:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
featuredLinks:
gettingStarted:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popular:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
versions: '*'
---

Просмотреть файл

@ -2,14 +2,15 @@
title: GitHub Insights Documentation
shortTitle: GitHub Insights
intro: 'Understand and improve your software delivery process through data with {% data variables.product.prodname_insights %}. You can view customized reports based on data from {% data variables.product.prodname_enterprise %}.'
gettingStartedLinks:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popularLinks:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
featuredLinks:
gettingStarted:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popular:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
redirect_from:
- /github/installing-and-configuring-github-insights
versions:

Просмотреть файл

@ -2,18 +2,19 @@
title: GitHub Packages Documentation
shortTitle: GitHub Packages
intro: 'Learn to safely publish and consume packages, store your packages alongside your code, and share your packages privately with your team or publicly with the open source community. You can also automate your packages with {% data variables.product.prodname_actions %}.'
gettingStartedLinks:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popularLinks:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
featuredLinks:
gettingStarted:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popular:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
redirect_from:
- /github/managing-packages-with-github-packages
- /categories/managing-packages-with-github-package-registry

Просмотреть файл

@ -2,15 +2,16 @@
title: Documentación de GitHub Actions
shortTitle: GitHub Actions
intro: 'Automatiza, personaliza y ejecuta tus flujos de trabajo de desarrollo de software directamente en tu repositorio con {% data variables.product.prodname_actions %}. Puedes descubrir, crear y compartir acciones para realizar cualquier trabajo que quieras, incluido CI/CD, y combinar acciones en un flujo de trabajo completamente personalizado.'
gettingStartedLinks:
- /actions/quickstart
- /actions/learn-github-actions
guideLinks:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popularLinks:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
featuredLinks:
gettingStarted:
- /actions/quickstart
- /actions/learn-github-actions
guide:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popular:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
redirect_from:
- /articles/automating-your-workflow-with-github-actions/
- /articles/customizing-your-project-with-github-actions/
@ -39,7 +40,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
</div>
<ul class="list-style-none">
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -50,7 +51,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
<ul class="list-style-none">
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -61,7 +62,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">Administrar flujos de trabajo</h3>
</div>
<ul class="list-style-none">
{% for link in guideLinks %}
{% for link in featuredLinks.guide %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>

Просмотреть файл

@ -1,16 +1,17 @@
---
title: '{% data variables.product.product_name %}{% if currentVersion == "free-pro-team@latest" %}.com{% endif %} Documentación de Ayuda'
gettingStartedLinks:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popularLinks:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
featuredLinks:
gettingStarted:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popular:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
versions:
free-pro-team: '*'
enterprise-server: '*'

Просмотреть файл

@ -2,14 +2,15 @@
title: Documentación de GitHub Insights
shortTitle: GitHub Insights
intro: 'Entiende y mejora tu proceso de entrega de software a través de datos con {% data variables.product.prodname_insights %}. Puedes ver informes personalizados basados en datos de {% data variables.product.prodname_enterprise %}.'
gettingStartedLinks:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popularLinks:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
featuredLinks:
gettingStarted:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popular:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
redirect_from:
- /github/installing-and-configuring-github-insights
versions:

Просмотреть файл

@ -2,18 +2,19 @@
title: Documentación de GitHub Packages
shortTitle: Paquetes de GitHub
intro: 'Aprende a publicar y consumir paquetes de forma segura, almacena tus paquetes junto con tu código y comparte tus paquetes de forma privada con tu equipo o de manera pública con la comunidad de código abierto. También puedes automatizar tus paquetes con {% data variables.product.prodname_actions %}.'
gettingStartedLinks:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popularLinks:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
featuredLinks:
gettingStarted:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popular:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
redirect_from:
- /github/managing-packages-with-github-packages
- /categories/managing-packages-with-github-package-registry

Просмотреть файл

@ -2,15 +2,16 @@
title: GitHub Actionsのドキュメント
shortTitle: GitHub Actions
intro: '{% data variables.product.prodname_actions %}で、ソフトウェア開発ワークフローをリポジトリの中で自動化、カスタマイズ実行しましょう。 CI/CDを含む好きなジョブを実行してくれるアクションを、見つけたり、作成したり、共有したり、完全にカスタマイズされたワークフロー中でアクションを組み合わせたりできます。'
gettingStartedLinks:
- /actions/quickstart
- /actions/learn-github-actions
guideLinks:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popularLinks:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
featuredLinks:
gettingStarted:
- /actions/quickstart
- /actions/learn-github-actions
guide:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popular:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
redirect_from:
- /articles/automating-your-workflow-with-github-actions/
- /articles/customizing-your-project-with-github-actions/
@ -39,7 +40,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
</div>
<ul class="list-style-none">
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -50,7 +51,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
<ul class="list-style-none">
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -61,7 +62,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">Manage workflows</h3>
</div>
<ul class="list-style-none">
{% for link in guideLinks %}
{% for link in featuredLinks.guide %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>

Просмотреть файл

@ -1,16 +1,17 @@
---
title: '{% data variables.product.product_name %}{% if currentVersion == "free-pro-team@latest" %}.com{% endif %} Help Documentation'
gettingStartedLinks:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popularLinks:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
featuredLinks:
gettingStarted:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popular:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
versions: '*'
---

Просмотреть файл

@ -2,14 +2,15 @@
title: GitHub Insightsのドキュメント
shortTitle: GitHub Insights
intro: '{% data variables.product.prodname_insights %}とデータを通じてソフトウェアのデリバリプロセスを理解し、改善してください。 {% data variables.product.prodname_enterprise %}空のデータに基づくカスタマイズされたレポートを見ることができます。'
gettingStartedLinks:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popularLinks:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
featuredLinks:
gettingStarted:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popular:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
redirect_from:
- /github/installing-and-configuring-github-insights
versions:

Просмотреть файл

@ -2,18 +2,19 @@
title: GitHub Packagesのドキュメント
shortTitle: GitHub Packages
intro: '安全にパッケージを公開及び利用し、コードと共にパッケージを保存し、パッケージをTeamとプライベートに、あるいはオープンソースコミュニティとパブリックに共有してください。 また、{% data variables.product.prodname_actions %}とパッケージを自動化することもできます。'
gettingStartedLinks:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popularLinks:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
featuredLinks:
gettingStarted:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popular:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
redirect_from:
- /github/managing-packages-with-github-packages
- /categories/managing-packages-with-github-package-registry

Просмотреть файл

@ -2,15 +2,16 @@
title: GitHub Actions Documentation
shortTitle: GitHub Actions
intro: 'Automate, customize, and execute your software development workflows right in your repository with {% data variables.product.prodname_actions %}. You can discover, create, and share actions to perform any job you''d like, including CI/CD, and combine actions in a completely customized workflow.'
gettingStartedLinks:
- /actions/quickstart
- /actions/learn-github-actions
guideLinks:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popularLinks:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
featuredLinks:
gettingStarted:
- /actions/quickstart
- /actions/learn-github-actions
guide:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popular:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
redirect_from:
- /articles/automating-your-workflow-with-github-actions/
- /articles/customizing-your-project-with-github-actions/
@ -39,7 +40,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
</div>
<ul class="list-style-none">
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -50,7 +51,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
<ul class="list-style-none">
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -61,7 +62,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">Manage workflows</h3>
</div>
<ul class="list-style-none">
{% for link in guideLinks %}
{% for link in featuredLinks.guide %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>

Просмотреть файл

@ -1,16 +1,17 @@
---
title: '{% data variables.product.product_name %}{% if currentVersion == "free-pro-team@latest" %}.com{% endif %} Help Documentation'
gettingStartedLinks:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popularLinks:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
featuredLinks:
gettingStarted:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popular:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
versions: '*'
---

Просмотреть файл

@ -2,14 +2,15 @@
title: GitHub Insights Documentation
shortTitle: GitHub Insights
intro: 'Understand and improve your software delivery process through data with {% data variables.product.prodname_insights %}. You can view customized reports based on data from {% data variables.product.prodname_enterprise %}.'
gettingStartedLinks:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popularLinks:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
featuredLinks:
gettingStarted:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popular:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
redirect_from:
- /github/installing-and-configuring-github-insights
versions:

Просмотреть файл

@ -2,18 +2,19 @@
title: GitHub Packages Documentation
shortTitle: GitHub Packages
intro: 'Learn to safely publish and consume packages, store your packages alongside your code, and share your packages privately with your team or publicly with the open source community. You can also automate your packages with {% data variables.product.prodname_actions %}.'
gettingStartedLinks:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popularLinks:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
featuredLinks:
gettingStarted:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popular:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
redirect_from:
- /github/managing-packages-with-github-packages
- /categories/managing-packages-with-github-package-registry

Просмотреть файл

@ -2,15 +2,16 @@
title: Documentação do GitHub Actions
shortTitle: GitHub Actions
intro: 'Automatize, personalize e execute seus fluxos de trabalho de desenvolvimento do software diretamente no seu repositório com o {% data variables.product.prodname_actions %}. Você pode descobrir, criar e compartilhar ações para realizar qualquer trabalho que desejar, incluindo CI/CD, bem como combinar ações em um fluxo de trabalho completamente personalizado.'
gettingStartedLinks:
- /actions/quickstart
- /actions/learn-github-actions
guideLinks:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popularLinks:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
featuredLinks:
gettingStarted:
- /actions/quickstart
- /actions/learn-github-actions
guide:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popular:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
redirect_from:
- /articles/automating-your-workflow-with-github-actions/
- /articles/customizing-your-project-with-github-actions/
@ -39,7 +40,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
</div>
<ul class="list-style-none">
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -50,7 +51,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
<ul class="list-style-none">
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -61,7 +62,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">Gerenciar fluxos de trabalho</h3>
</div>
<ul class="list-style-none">
{% for link in guideLinks %}
{% for link in featuredLinks.guide %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>

Просмотреть файл

@ -1,16 +1,17 @@
---
title: '{% data variables.product.product_name %}{% if currentVersion == "free-pro-team@latest" %}.com{% endif %} Documentação de ajuda'
gettingStartedLinks:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popularLinks:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
featuredLinks:
gettingStarted:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popular:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
versions: '*'
---

Просмотреть файл

@ -2,14 +2,15 @@
title: Documentação do GitHub Insights
shortTitle: GitHub Insights
intro: 'Entenda e melhore seu processo de entrega de software por meio de dados com o {% data variables.product.prodname_insights %}. Você pode visualizar relatórios personalizados com base em dados do {% data variables.product.prodname_enterprise %}.'
gettingStartedLinks:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popularLinks:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
featuredLinks:
gettingStarted:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popular:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
redirect_from:
- /github/installing-and-configuring-github-insights
versions:

Просмотреть файл

@ -2,18 +2,19 @@
title: Documentação de GitHub Packages
shortTitle: GitHub Package Registry
intro: 'Aprenda a publicar e consumir com segurança pacotes, armazene seus pacotes junto com o seu código e compartilhe seus pacotes de forma privada com sua equipe ou publicamente com a comunidade de código aberto. Você também pode automatizar seus pacotes com {% data variables.product.prodname_actions %}.'
gettingStartedLinks:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popularLinks:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
featuredLinks:
gettingStarted:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popular:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
redirect_from:
- /github/managing-packages-with-github-packages
- /categories/managing-packages-with-github-package-registry

Просмотреть файл

@ -2,15 +2,16 @@
title: GitHub Actions Documentation
shortTitle: GitHub Actions
intro: 'Automate, customize, and execute your software development workflows right in your repository with {% data variables.product.prodname_actions %}. You can discover, create, and share actions to perform any job you''d like, including CI/CD, and combine actions in a completely customized workflow.'
gettingStartedLinks:
- /actions/quickstart
- /actions/learn-github-actions
guideLinks:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popularLinks:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
featuredLinks:
gettingStarted:
- /actions/quickstart
- /actions/learn-github-actions
guide:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popular:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
redirect_from:
- /articles/automating-your-workflow-with-github-actions/
- /articles/customizing-your-project-with-github-actions/
@ -39,7 +40,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
</div>
<ul class="list-style-none">
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -50,7 +51,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
<ul class="list-style-none">
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -61,7 +62,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">Manage workflows</h3>
</div>
<ul class="list-style-none">
{% for link in guideLinks %}
{% for link in featuredLinks.guide %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>

Просмотреть файл

@ -1,16 +1,17 @@
---
title: '{% data variables.product.product_name %}{% if currentVersion == "free-pro-team@latest" %}.com{% endif %} Help Documentation'
gettingStartedLinks:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popularLinks:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
featuredLinks:
gettingStarted:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popular:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
versions: '*'
---

Просмотреть файл

@ -2,14 +2,15 @@
title: GitHub Insights Documentation
shortTitle: GitHub Insights
intro: 'Understand and improve your software delivery process through data with {% data variables.product.prodname_insights %}. You can view customized reports based on data from {% data variables.product.prodname_enterprise %}.'
gettingStartedLinks:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popularLinks:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
featuredLinks:
gettingStarted:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popular:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
redirect_from:
- /github/installing-and-configuring-github-insights
versions:

Просмотреть файл

@ -2,18 +2,19 @@
title: GitHub Packages Documentation
shortTitle: GitHub Packages
intro: 'Learn to safely publish and consume packages, store your packages alongside your code, and share your packages privately with your team or publicly with the open source community. You can also automate your packages with {% data variables.product.prodname_actions %}.'
gettingStartedLinks:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popularLinks:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
featuredLinks:
gettingStarted:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popular:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
redirect_from:
- /github/managing-packages-with-github-packages
- /categories/managing-packages-with-github-package-registry

Просмотреть файл

@ -2,15 +2,16 @@
title: GitHub Actions文档
shortTitle: GitHub Actions
intro: '在 {% data variables.product.prodname_actions %} 的仓库中自动化、自定义和执行软件开发工作流程。 您可以发现、创建和共享操作以执行您喜欢的任何作业(包括 CI/CD并将操作合并到完全自定义的工作流程中。'
gettingStartedLinks:
- /actions/quickstart
- /actions/learn-github-actions
guideLinks:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popularLinks:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
featuredLinks:
gettingStarted:
- /actions/quickstart
- /actions/learn-github-actions
guide:
- /actions/managing-workflow-runs
- /actions/hosting-your-own-runners
popular:
- /actions/reference/workflow-syntax-for-github-actions
- /actions/reference/events-that-trigger-workflows
redirect_from:
- /articles/automating-your-workflow-with-github-actions/
- /articles/customizing-your-project-with-github-actions/
@ -39,7 +40,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
</div>
<ul class="list-style-none">
{% for link in gettingStartedLinks %}
{% for link in featuredLinks.gettingStarted %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -50,7 +51,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
</div>
<ul class="list-style-none">
{% for link in popularLinks %}
{% for link in featuredLinks.popular %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>
@ -61,7 +62,7 @@ versions:
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">管理工作流程</h3>
</div>
<ul class="list-style-none">
{% for link in guideLinks %}
{% for link in featuredLinks.guide %}
<li>{% include featured-link %}</li>
{% endfor %}
</ul>

Просмотреть файл

@ -1,16 +1,17 @@
---
title: '{% data variables.product.product_name %}{% if currentVersion == "free-pro-team@latest" %}.com{% endif %} 帮助文档'
gettingStartedLinks:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popularLinks:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
featuredLinks:
gettingStarted:
- /github/getting-started-with-github/set-up-git
- /github/authenticating-to-github/connecting-to-github-with-ssh
- /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github
- /github/writing-on-github/basic-writing-and-formatting-syntax
popular:
- /github/collaborating-with-issues-and-pull-requests/about-pull-requests
- /github/authenticating-to-github
- /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line
- /github/using-git/managing-remote-repositories
- /github/working-with-github-pages
versions: '*'
---

Просмотреть файл

@ -2,14 +2,15 @@
title: GitHub Insights 文档
shortTitle: GitHub Insights
intro: '通过 {% data variables.product.prodname_insights %} 的数据了解和改进软件交付过程。 您可以从 {% data variables.product.prodname_enterprise %} 查看基于数据的自定义报告。'
gettingStartedLinks:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popularLinks:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
featuredLinks:
gettingStarted:
- /insights/installing-and-configuring-github-insights/about-github-insights
- /insights/installing-and-configuring-github-insights/system-overview-for-github-insights
- /insights/installing-and-configuring-github-insights/installing-github-insights
- /insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports
popular:
- /insights/installing-and-configuring-github-insights/about-data-in-github-insights
- /insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights
redirect_from:
- /github/installing-and-configuring-github-insights
versions:

Просмотреть файл

@ -2,18 +2,19 @@
title: GitHub 包文档
shortTitle: GitHub Packages
intro: '了解如何安全地发布和使用包,将包与代码存储在一起,以及与您的团队私下分享或与开源社区公开分享您的包。 还可以使用 {% data variables.product.prodname_actions %} 自动执行您的包。'
gettingStartedLinks:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popularLinks:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
featuredLinks:
gettingStarted:
- /packages/publishing-and-managing-packages/about-github-packages
- /packages/getting-started-with-github-container-registry/about-github-container-registry
- /packages/getting-started-with-github-container-registry
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/publishing-and-managing-packages/publishing-a-package
- /packages/publishing-and-managing-packages/installing-a-package
popular:
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages
- /packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages
- /packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images
- /packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions
redirect_from:
- /github/managing-packages-with-github-packages
- /categories/managing-packages-with-github-package-registry