Skip to content

Commit ab44d50

Browse files
committed
help.github.com is now docs.github.com
1 parent d6f8c9f commit ab44d50

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module mode by default. To turn it on explicitly, set `GO111MODULE=on`.
4747
#### How do I set environent variables?
4848

4949
They can be set up via `env` for an [entire
50-
workflow](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#env),
50+
workflow](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#env),
5151
a job, or for each step:
5252

5353
```yaml
@@ -74,7 +74,7 @@ downloaded modules:
7474
#### How do I run a step conditionally?
7575

7676
You can use `if` conditionals, using their [custom expression
77-
language](https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions):
77+
language](https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions):
7878

7979
```yaml
8080
- name: Run end-to-end tests on Linux
@@ -85,9 +85,9 @@ language](https://help.github.com/en/actions/reference/context-and-expression-sy
8585
#### How do I set up a custom build matrix?
8686

8787
You can [add options to existing matrix
88-
jobs](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-configurations-in-a-matrix-build),
88+
jobs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-configurations-in-a-matrix-build),
8989
and you can [exclude specific matrix
90-
jobs](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix).
90+
jobs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix).
9191

9292
#### How do I run multiline scripts?
9393

@@ -103,11 +103,11 @@ jobs](https://help.github.com/en/actions/reference/workflow-syntax-for-github-ac
103103
The biggest difference is the UI; workflow results are shown separately.
104104
Grouping jobs in workflows can also be useful if one wants to customize the
105105
workflow triggers, or to set up dependencies via
106-
[needs](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idneeds).
106+
[needs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idneeds).
107107

108108
#### How do I set up a secret environment variable?
109109

110-
Follow [these steps](https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets)
110+
Follow [these steps](https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets)
111111
to set up the secret in the repo's settings. After adding a secret like
112112
`FOO_SECRET`, use it on a step as follows:
113113

@@ -161,11 +161,11 @@ jobs:
161161

162162
## Quick links
163163

164-
* Concepts, rate limits, etc: https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions
164+
* Concepts, rate limits, etc: https://docs.github.com/en/actions/getting-started-with-github-actions/about-github-actions
165165

166-
* Syntax and fields reference: https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
166+
* Syntax and fields reference: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
167167

168-
* Environment reference: https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
168+
* Environment reference: https://docs.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
169169

170170
* To report bugs: https://github.community/c/github-actions/41
171171

0 commit comments

Comments
 (0)