Skip to content

Commit 2f9df80

Browse files
committed
Always use yaml instead of sometimes yml
1 parent 49a3a80 commit 2f9df80

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

content/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ See [Versioning](#versioning) for more info.
5757

5858
Example that applies to GitHub.com and recent versions of GitHub Enterprise Server:
5959

60-
```yml
60+
```yaml
6161
title: About your personal dashboard
6262
versions:
6363
free-pro-team: '*'
@@ -67,15 +67,15 @@ versions:
6767
Example that applies to all supported versions of GitHub Enterprise Server:
6868
(but not GitHub.com):
6969
70-
```yml
70+
```yaml
7171
title: Downloading your license
7272
versions:
7373
enterprise-server: '*'
7474
```
7575
7676
You can also version a page for a range of releases. This would version the page for GitHub Enterprise Server 2.22 and 3.0 only:
7777
78-
```yml
78+
```yaml
7979
versions:
8080
free-pro-team: '*'
8181
enterprise-server: '>=2.22 <3.1'
@@ -89,7 +89,7 @@ versions:
8989

9090
Example:
9191

92-
```yml
92+
```yaml
9393
title: Getting started with GitHub Desktop
9494
redirect_from:
9595
- /articles/first-launch/
@@ -113,7 +113,7 @@ See [`contributing/redirects`](contributing/redirects.md) for more info.
113113

114114
Example:
115115

116-
```yml
116+
```yaml
117117
title: Contributing to projects with GitHub Desktop
118118
shortTitle: Contributing to projects
119119
```
@@ -233,7 +233,7 @@ defaultTool: cli
233233

234234
Example:
235235

236-
```yml
236+
```yaml
237237
includeGuides:
238238
- /actions/guides/about-continuous-integration
239239
- /actions/guides/setting-up-continuous-integration-using-workflow-templates
@@ -258,7 +258,7 @@ includeGuides:
258258

259259
Example:
260260

261-
```yml
261+
```yaml
262262
contributor:
263263
name: ACME, inc.
264264
URL: https://acme.example.com/

content/code-security/secure-coding/uploading-a-sarif-file-to-github.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ This example workflow runs anytime commits are pushed to the repository. The act
9191

9292
The workflow shows an example of running the ESLint static analysis tool as a step in a workflow. The `Run ESLint` step runs the ESLint tool and outputs the `results.sarif` file. The workflow then uploads the `results.sarif` file to {% data variables.product.prodname_dotcom %} using the `upload-sarif` action. For more information about creating a workflow file, see "[Introduction to GitHub Actions](/actions/learn-github-actions/introduction-to-github-actions)."
9393

94-
```yml
94+
```yaml
9595
name: "ESLint analysis"
9696
9797
# Run workflow each time code is pushed to your repository and on a schedule.

content/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This example workflow runs anytime commits are pushed to the repository. The act
8585

8686
The workflow shows an example of running the ESLint static analysis tool as a step in a workflow. The `Run ESLint` step runs the ESLint tool and outputs the `results.sarif` file. The workflow then uploads the `results.sarif` file to {% data variables.product.prodname_dotcom %} using the `upload-sarif` action. For more information about creating a workflow file, see "[Introduction to GitHub Actions](/actions/learn-github-actions/introduction-to-github-actions)."
8787

88-
```yml
88+
```yaml
8989
name: "ESLint analysis"
9090
9191
# Run workflow each time code is pushed to your repository and on a schedule.

data/variables/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The *path*, *filename*, and *keys* within each YAML file determine what its path
88

99
For example, given a file `data/variables/foo/bar.yml`:
1010

11-
```yml
11+
```yaml
1212
# multiple short strings in one file
1313
meaning_of_life: 42
1414

0 commit comments

Comments
 (0)