Skip to content

Commit 9eb1460

Browse files
Biswa96lazka
authored andcommitted
README: Update GitHub Actions docs links
1 parent 2649566 commit 9eb1460

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ In order to reduce verbosity, it is possible to set `msys2` as the default shell
6969

7070
It is common to test some package/tool on multiple environments, which typically requires installing different sets of
7171
packages through option `install`.
72-
GitHub Actions' `strategy` and `matrix` fields allow to do so, as explained in [docs.github.com: Configuring a build matrix](https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix)
73-
and [docs.github.com: `jobs.<job_id>.strategy.matrix`](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix).
72+
GitHub Actions' `strategy` and `matrix` fields allow to do so, as explained in [docs.github.com: Running variations of jobs in a workflow](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow)
73+
and [docs.github.com: `jobs.<job_id>.strategy.matrix`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix).
7474
See, for instance:
7575

7676
```yml
@@ -105,15 +105,15 @@ Alternatively, option `pacboy` allows using a single matrix variable:
105105
pacboy: openssl:p
106106
```
107107

108-
Furthermore, [.github/workflows/PKGBUILD.yml](.github/workflows/PKGBUILD.yml) is a [Reusable Workflow](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows)
108+
Furthermore, [.github/workflows/PKGBUILD.yml](.github/workflows/PKGBUILD.yml) is a [Reusable Workflow](https://docs.github.com/en/actions/sharing-automations/reusing-workflows)
109109
to build and test a package in GitHub Actions using a PKGBUILD recipe.
110-
It can be used along with [matrix](./matrix) (a [Composite Action](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action)),
110+
It can be used along with [matrix](./matrix) (a [Composite Action](https://docs.github.com/en/actions/sharing-automations/creating-actions/creating-a-composite-action)),
111111
as shown in [.github/workflows/Tool.yml](.github/workflows/Tool.yml).
112112

113113
Note: By default, GitHub Actions terminates any running jobs if any job in matrix
114114
fails. This default behavior can be disabled by setting `fail-fast: false` in
115115
strategy section. See
116-
[docs.github.com: `jobs.<job_id>.strategy.fail-fast`](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast)
116+
[docs.github.com: `jobs.<job_id>.strategy.fail-fast`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast)
117117
for more details.
118118

119119
Find similar patterns in the following workflows:

0 commit comments

Comments
 (0)