Skip to content

Commit 6fe4272

Browse files
authored
Merge pull request #25654 from github/repo-sync
repo sync
2 parents 16ddda4 + 89fa131 commit 6fe4272

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

content/actions/automating-builds-and-tests/building-and-testing-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
runs-on: ubuntu-latest
8686
strategy:
8787
matrix:
88-
dotnet: [ '3.0', '3.1.x', '5.0.x' ]
88+
dotnet-version: [ '3.0', '3.1.x', '5.0.x' ]
8989
9090
steps:
9191
- uses: actions/checkout@v2

content/actions/learn-github-actions/understanding-github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ You can configure a {% data variables.product.prodname_actions %} _workflow_ to
3838

3939
A workflow is a configurable automated process that will run one or more jobs. Workflows are defined by a YAML file checked in to your repository and will run when triggered by an event in your repository, or they can be triggered manually, or at a defined schedule.
4040

41-
Your repository can have multiple workflows in a repository, each of which can perform a different set of steps. For example, you can have one workflow to build and test pull requests, another workflow to deploy your application every time a release is created, and still another workflow that adds a label every time someone opens a new issue.
41+
You can have multiple workflows in a repository, each of which can perform a different set of steps. For example, you can have one workflow to build and test pull requests, another workflow to deploy your application every time a release is created, and still another workflow that adds a label every time someone opens a new issue.
4242

4343
{% ifversion fpt or ghes > 3.3 or ghae-issue-4757 or ghec %}You can reference a workflow within another workflow, see "[Reusing workflows](/actions/learn-github-actions/reusing-workflows)."{% endif %}
4444

@@ -266,4 +266,4 @@ To understand how billing works for {% data variables.product.prodname_actions %
266266
## Further reading
267267
268268
{% ifversion ghec or ghes or ghae %}
269-
- "[About {% data variables.product.prodname_actions %} for enterprises](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/about-github-actions-for-enterprises)"{% endif %}
269+
- "[About {% data variables.product.prodname_actions %} for enterprises](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/about-github-actions-for-enterprises)"{% endif %}

0 commit comments

Comments
 (0)