Skip to content

Repo sync #39533

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Deploying with GitHub Actions
shortTitle: Controlling deployments
shortTitle: Control deployments
intro: Learn how to control deployments with features like environments and concurrency.
versions:
fpt: '*'
Expand All @@ -12,6 +12,7 @@ redirect_from:
- /actions/deployment/about-deployments/deploying-with-github-actions
- /actions/use-cases-and-examples/deploying/deploying-with-github-actions
- /actions/concepts/use-cases/deploying-with-github-actions
- /actions/tutorials/deploying-with-github-actions
topics:
- CD
- Deployment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ versions:
ghes: '*'
ghec: '*'
children:
- /control-deployments
- /view-deployment-history
- /manage-environments
- /review-deployments
Expand Down
4 changes: 2 additions & 2 deletions content/actions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ featuredLinks:
- /packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions
guideCards:
- /actions/how-tos/write-workflows/use-workflow-templates
- /actions/tutorials/publishing-packages/publishing-nodejs-packages
- /actions/tutorials/build-and-test-code/building-and-testing-powershell
- /actions/tutorials/publish-packages/publish-nodejs-packages
- /actions/tutorials/build-and-test-code/powershell
popular:
- /actions/reference/workflows-and-actions/workflow-syntax
- /actions/how-tos/write-workflows
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Use GITHUB_TOKEN in workflows
title: Use GITHUB_TOKEN for authentication in workflows
intro: 'Learn how to use the `GITHUB_TOKEN` to authenticate on behalf of {% data variables.product.prodname_actions %}.'
redirect_from:
- /github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token
Expand All @@ -15,11 +15,12 @@ redirect_from:
- /actions/writing-workflows/choosing-what-your-workflow-does/controlling-permissions-for-github-token
- /actions/writing-workflows/choosing-what-your-workflow-does/controlling-permissions-for-github_token
- /actions/how-tos/writing-workflows/choosing-what-your-workflow-does/controlling-permissions-for-github_token
- /actions/tutorials/use-github_token-in-workflows
versions:
fpt: '*'
ghes: '*'
ghec: '*'
shortTitle: Use GITHUB_TOKEN
shortTitle: Authenticate with GITHUB_TOKEN
---

This tutorial leads you through how to use the `GITHUB_TOKEN` for authentication in {% data variables.product.prodname_actions %} workflows, including examples for passing the token to actions, making API requests, and configuring permissions for secure automation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-go
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-go
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-go
- /actions/tutorials/build-and-test-code/building-and-testing-go
---

{% data reusables.actions.enterprise-github-hosted-runners %}
Expand Down
25 changes: 13 additions & 12 deletions content/actions/tutorials/build-and-test-code/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@ redirect_from:
- /actions/how-tos/use-cases-and-examples/building-and-testing
- /actions/how-tos/writing-workflows/building-and-testing
children:
- /building-and-testing-go
- /building-and-testing-java-with-ant
- /building-and-testing-java-with-gradle
- /building-and-testing-java-with-maven
- /building-and-testing-net
- /building-and-testing-nodejs
- /building-and-testing-powershell
- /building-and-testing-python
- /building-and-testing-ruby
- /building-and-testing-rust
- /building-and-testing-swift
- /building-and-testing-xamarin-applications
- /go
- /java-with-ant
- /java-with-gradle
- /java-with-maven
- /net
- /nodejs
- /powershell
- /python
- /ruby
- /rust
- /swift
- /xamarin-apps
---

Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/automating-builds-and-tests/building-and-testing-java-with-ant
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-java-with-ant
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-java-with-ant
- /actions/tutorials/build-and-test-code/building-and-testing-java-with-ant
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-java-with-gradle
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-java-with-gradle
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-java-with-gradle
- /actions/tutorials/build-and-test-code/building-and-testing-java-with-gradle
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-java-with-maven
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-java-with-maven
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-java-with-maven
- /actions/tutorials/build-and-test-code/building-and-testing-java-with-maven
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-net
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-net
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-net
- /actions/tutorials/build-and-test-code/building-and-testing-net
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-nodejs
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-nodejs
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-nodejs
- /actions/tutorials/build-and-test-code/building-and-testing-nodejs
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-powershell
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-powershell
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-powershell
- /actions/tutorials/build-and-test-code/building-and-testing-powershell
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-python
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-python
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-python
- /actions/tutorials/build-and-test-code/building-and-testing-python
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-ruby
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-ruby
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-ruby
- /actions/tutorials/build-and-test-code/building-and-testing-ruby
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-rust
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-rust
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-rust
- /actions/tutorials/build-and-test-code/building-and-testing-rust
---

{% data reusables.actions.enterprise-github-hosted-runners %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-swift
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-swift
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-swift
- /actions/tutorials/build-and-test-code/building-and-testing-swift
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-xamarin-applications
- /actions/how-tos/use-cases-and-examples/building-and-testing/building-and-testing-xamarin-applications
- /actions/how-tos/writing-workflows/building-and-testing/building-and-testing-xamarin-applications
- /actions/tutorials/build-and-test-code/building-and-testing-xamarin-applications
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ redirect_from:
- /actions/creating-actions/creating-a-composite-run-steps-action
- /actions/creating-actions/creating-a-composite-action
- /actions/sharing-automations/creating-actions/creating-a-composite-action
- /actions/tutorials/creating-a-composite-action
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ redirect_from:
- /actions/building-actions/creating-a-javascript-action
- /actions/creating-actions/creating-a-javascript-action
- /actions/sharing-automations/creating-actions/creating-a-javascript-action
- /actions/tutorials/creating-a-javascript-action
versions:
fpt: '*'
ghes: '*'
Expand Down
11 changes: 11 additions & 0 deletions content/actions/tutorials/create-actions/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Create actions
intro: You can build reusable actions to automate tasks in your workflows.
versions:
fpt: '*'
ghes: '*'
ghec: '*'
children:
- /create-a-javascript-action
- /create-a-composite-action
---
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ shortTitle: Create an example workflow
layout: inline
redirect_from:
- /actions/use-cases-and-examples/creating-an-example-workflow
- /actions/tutorials/creating-an-example-workflow
---

## Introduction
Expand Down
19 changes: 8 additions & 11 deletions content/actions/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,16 @@ versions:
ghes: '*'
ghec: '*'
children:
- /migrating-to-github-actions
- /actions-runner-controller
- /project-management
- /using-containerized-services
- /create-an-example-workflow
- /build-and-test-code
- /publishing-packages
- /creating-an-example-workflow
- /use-github_token-in-workflows
- /creating-a-javascript-action
- /creating-a-composite-action
- /authenticate-with-github_token
- /create-actions
- /publish-packages
- /manage-your-work
- /store-and-share-data
- /deploying-with-github-actions
- /communicating-with-docker-service-containers
- /use-containerized-services
- /migrate-to-github-actions
- /use-actions-runner-controller
redirect_from:
- /actions/guides
- /actions/how-tos/use-cases-and-examples
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ redirect_from:
- /actions/managing-issues-and-pull-requests/commenting-on-an-issue-when-a-label-is-added
- /actions/use-cases-and-examples/project-management/commenting-on-an-issue-when-a-label-is-added
- /actions/how-tos/use-cases-and-examples/project-management/commenting-on-an-issue-when-a-label-is-added
- /actions/tutorials/project-management/commenting-on-an-issue-when-a-label-is-added
versions:
fpt: '*'
ghes: '*'
Expand All @@ -14,7 +15,7 @@ type: tutorial
topics:
- Workflows
- Project management
shortTitle: Add label to comment on issue
shortTitle: Add comments with labels
---

{% data reusables.actions.enterprise-github-hosted-runners %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/managing-issues-and-pull-requests/adding-labels-to-issues
- /actions/use-cases-and-examples/project-management/adding-labels-to-issues
- /actions/how-tos/use-cases-and-examples/project-management/adding-labels-to-issues
- /actions/tutorials/project-management/adding-labels-to-issues
versions:
fpt: '*'
ghes: '*'
Expand All @@ -16,7 +17,7 @@ topics:
- Workflows
- Project management
---

{% data reusables.actions.enterprise-github-hosted-runners %}

## Introduction
Expand All @@ -32,7 +33,7 @@ In the tutorial, you will first make a workflow file that uses the {% data varia
1. {% data reusables.actions.choose-repo %}
1. {% data reusables.actions.make-workflow-file %}
1. Copy the following YAML contents into your workflow file.

```yaml copy
name: Label issues
on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/managing-issues-and-pull-requests/closing-inactive-issues
- /actions/use-cases-and-examples/project-management/closing-inactive-issues
- /actions/how-tos/use-cases-and-examples/project-management/closing-inactive-issues
- /actions/tutorials/project-management/closing-inactive-issues
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
---
title: Managing projects
shortTitle: Project management
title: Managing your work with GitHub Actions
shortTitle: Manage your work
intro: 'You can automatically manage your issues and pull requests using {% data variables.product.prodname_actions %} workflows.'
versions:
fpt: '*'
ghes: '*'
ghec: '*'
children:
- /adding-labels-to-issues
- /closing-inactive-issues
- /commenting-on-an-issue-when-a-label-is-added
- /scheduling-issue-creation
- /add-labels-to-issues
- /close-inactive-issues
- /add-comments-with-labels
- /schedule-issue-creation
redirect_from:
- /actions/managing-issues-and-pull-requests
- /actions/use-cases-and-examples/project-management
- /actions/how-tos/use-cases-and-examples/project-management/moving-assigned-issues-on-project-boards
- /actions/how-tos/use-cases-and-examples/project-management/removing-a-label-when-a-card-is-added-to-a-project-board-column
- /actions/how-tos/use-cases-and-examples/project-management
- /actions/examples
- /actions/tutorials/project-management
---

Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ redirect_from:
- /actions/managing-issues-and-pull-requests/scheduling-issue-creation
- /actions/use-cases-and-examples/project-management/scheduling-issue-creation
- /actions/how-tos/use-cases-and-examples/project-management/scheduling-issue-creation
- /actions/tutorials/project-management/scheduling-issue-creation
versions:
fpt: '*'
ghes: '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ redirect_from:
- /actions/migrating-to-github-actions/automated-migrations/migrating-from-azure-devops-with-github-actions-importer
- /actions/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-azure-devops-with-github-actions-importer
- /actions/how-tos/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-azure-devops-with-github-actions-importer
- /actions/tutorials/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-azure-devops-with-github-actions-importer
---

## About migrating from Azure DevOps with GitHub Actions Importer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ redirect_from:
- /actions/migrating-to-github-actions/automated-migrations/migrating-from-bamboo-with-github-actions-importer
- /actions/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-bamboo-with-github-actions-importer
- /actions/how-tos/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-bamboo-with-github-actions-importer
- /actions/tutorials/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-bamboo-with-github-actions-importer
---

## About migrating from Bamboo with GitHub Actions Importer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ redirect_from:
- /actions/migrating-to-github-actions/automated-migrations/migrating-from-bitbucket-pipelines-with-github-actions-importer
- /actions/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-bitbucket-pipelines-with-github-actions-importer
- /actions/how-tos/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-bitbucket-pipelines-with-github-actions-importer
- /actions/tutorials/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-bitbucket-pipelines-with-github-actions-importer
---

## About migrating from Bitbucket Pipelines with GitHub Actions Importer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ redirect_from:
- /actions/migrating-to-github-actions/automated-migrations/migrating-from-circleci-with-github-actions-importer
- /actions/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-circleci-with-github-actions-importer
- /actions/how-tos/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-circleci-with-github-actions-importer
- /actions/tutorials/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-circleci-with-github-actions-importer
---

## About migrating from CircleCI with GitHub Actions Importer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ redirect_from:
- /actions/migrating-to-github-actions/automated-migrations/migrating-from-gitlab-with-github-actions-importer
- /actions/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-gitlab-with-github-actions-importer
- /actions/how-tos/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-gitlab-with-github-actions-importer
- /actions/tutorials/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/migrating-from-gitlab-with-github-actions-importer
---

## About migrating from GitLab with GitHub Actions Importer
Expand Down
Loading
Loading