File tree Expand file tree Collapse file tree 12 files changed +34
-17
lines changed
hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller
sharing-automations/creating-actions Expand file tree Collapse file tree 12 files changed +34
-17
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ learningTracks:
16
16
includeGuides :
17
17
- /actions/writing-workflows/quickstart
18
18
- /actions/about-github-actions/understanding-github-actions
19
- - /actions/sharing-automations/creating-actions /creating-a-docker-container-action
19
+ - /actions/tutorials /creating-a-docker-container-action
20
20
- /actions/writing-workflows/using-workflow-templates
21
21
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-python
22
22
- /actions/use-cases-and-examples/building-and-testing/building-and-testing-nodejs
@@ -42,8 +42,8 @@ includeGuides:
42
42
- /actions/use-cases-and-examples/deploying/deploying-to-amazon-elastic-container-service
43
43
- /actions/use-cases-and-examples/deploying/deploying-to-google-kubernetes-engine
44
44
- /actions/concepts/workflows-and-actions/about-custom-actions
45
- - /actions/sharing-automations/creating-actions /creating-a-javascript-action
46
- - /actions/sharing-automations/creating-actions /creating-a-composite-action
45
+ - /actions/tutorials /creating-a-javascript-action
46
+ - /actions/tutorials /creating-a-composite-action
47
47
- /actions/migrating-to-github-actions/manually-migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions
48
48
- /actions/migrating-to-github-actions/manually-migrating-to-github-actions/migrating-from-circleci-to-github-actions
49
49
- /actions/migrating-to-github-actions/manually-migrating-to-github-actions/migrating-from-gitlab-cicd-to-github-actions
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ versions:
9
9
topics :
10
10
- Actions Runner Controller
11
11
children :
12
- - /quickstart-for-actions-runner-controller
13
12
- /authenticating-to-the-github-api
14
13
- /deploying-runner-scale-sets-with-actions-runner-controller
15
14
- /using-actions-runner-controller-runners-in-a-workflow
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ children:
49
49
- /migrating-to-github-actions
50
50
- /administering-github-actions
51
51
- /reference
52
+ - /tutorials
52
53
- /guides
53
54
---
54
55
Original file line number Diff line number Diff line change @@ -7,9 +7,6 @@ versions:
7
7
ghes : ' *'
8
8
ghec : ' *'
9
9
children :
10
- - /creating-a-docker-container-action
11
- - /creating-a-javascript-action
12
- - /creating-a-composite-action
13
10
- /setting-exit-codes-for-actions
14
11
- /releasing-and-maintaining-actions
15
12
- /publishing-actions-in-github-marketplace
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Creating a composite action
3
3
shortTitle : Create a composite action
4
- intro : ' In this guide , you'' ll learn how to build a composite action.'
4
+ intro : ' In this tutorial , you'' ll learn how to build a composite action.'
5
5
redirect_from :
6
6
- /actions/creating-actions/creating-a-composite-run-steps-action
7
7
- /actions/creating-actions/creating-a-composite-action
8
+ - /actions/sharing-automations/creating-actions/creating-a-composite-action
8
9
versions :
9
10
fpt : ' *'
10
11
ghes : ' *'
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Creating a Docker container action
3
3
shortTitle : Create a Docker container action
4
- intro : ' This guide shows you the minimal steps required to build a Docker container action. '
4
+ intro : ' In this tutorial, you'' ll learn how to build a Docker container action.'
5
5
redirect_from :
6
6
- /articles/creating-a-docker-container-action
7
7
- /github/automating-your-workflow-with-github-actions/creating-a-docker-container-action
8
8
- /actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action
9
9
- /actions/building-actions/creating-a-docker-container-action
10
10
- /actions/creating-actions/creating-a-docker-container-action
11
+ - /actions/sharing-automations/creating-actions/creating-a-docker-container-action
11
12
versions :
12
13
fpt : ' *'
13
14
ghes : ' *'
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Creating a JavaScript action
3
3
shortTitle : Create a JavaScript action
4
- intro : ' In this guide , you'' ll learn how to build a JavaScript action using the actions toolkit.'
4
+ intro : ' In this tutorial , you'' ll learn how to build a JavaScript action using the actions toolkit.'
5
5
redirect_from :
6
6
- /articles/creating-a-javascript-action
7
7
- /github/automating-your-workflow-with-github-actions/creating-a-javascript-action
8
8
- /actions/automating-your-workflow-with-github-actions/creating-a-javascript-action
9
9
- /actions/building-actions/creating-a-javascript-action
10
10
- /actions/creating-actions/creating-a-javascript-action
11
+ - /actions/sharing-automations/creating-actions/creating-a-javascript-action
11
12
versions :
12
13
fpt : ' *'
13
14
ghes : ' *'
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Creating an example workflow
3
- intro : Learn how to create a basic workflow that is triggered by a push event.
3
+ intro : ' In this tutorial, you '' ll learn how to create a basic workflow that is triggered by a push event.'
4
4
versions :
5
5
fpt : ' *'
6
6
ghes : ' *'
@@ -11,6 +11,8 @@ topics:
11
11
- Workflows
12
12
shortTitle : Create an example workflow
13
13
layout : inline
14
+ redirect_from :
15
+ - /actions/use-cases-and-examples/creating-an-example-workflow
14
16
---
15
17
16
18
## Introduction
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Tutorials
3
+ intro : " Build skills and knowledge about GitHub Actions through hands-on activities."
4
+ versions :
5
+ fpt : ' *'
6
+ ghes : ' *'
7
+ ghec : ' *'
8
+ children :
9
+ - /creating-an-example-workflow
10
+ - /creating-a-docker-container-action
11
+ - /creating-a-javascript-action
12
+ - /creating-a-composite-action
13
+ - /quickstart-for-actions-runner-controller
14
+ ---
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Quickstart for Actions Runner Controller
3
- shortTitle : Quickstart
4
- intro : ' Try out {% data variables.product.prodname_actions_runner_controller %} in 5 minutes .'
3
+ shortTitle : Actions Runner Controller
4
+ intro : ' In this tutorial, you '' ll try out the basics of {% data variables.product.prodname_actions_runner_controller %}.'
5
5
versions :
6
6
fpt : ' *'
7
7
ghec : ' *'
@@ -10,6 +10,8 @@ type: quick_start
10
10
topics :
11
11
- Actions Runner Controller
12
12
defaultPlatform : linux
13
+ redirect_from :
14
+ - /actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/quickstart-for-actions-runner-controller
13
15
---
14
16
15
17
[ Legal notice] ( #legal-notice )
You can’t perform that action at this time.
0 commit comments