Commit b3bb7961 authored by Evan Read's avatar Evan Read

Enforce capitalization of TOML and YAML

parent 5ba71874
...@@ -116,6 +116,7 @@ ...@@ -116,6 +116,7 @@
"SMTP", "SMTP",
"SSH", "SSH",
"Tiller", "Tiller",
"TOML",
"Trello", "Trello",
"Trello Power-Ups", "Trello Power-Ups",
"TypeScript", "TypeScript",
...@@ -125,6 +126,7 @@ ...@@ -125,6 +126,7 @@
"Unicorn", "Unicorn",
"unicorn-worker-killer", "unicorn-worker-killer",
"WebdriverIO", "WebdriverIO",
"YAML",
"YouTrack" "YouTrack"
], ],
"code_blocks": false "code_blocks": false
......
...@@ -130,7 +130,7 @@ other using `docker` executor. ...@@ -130,7 +130,7 @@ other using `docker` executor.
### `shell` executor example ### `shell` executor example
Let's assume that you have the following [config.toml](https://docs.gitlab.com/runner/configuration/advanced-configuration.html). Let's assume that you have the following [`config.toml`](https://docs.gitlab.com/runner/configuration/advanced-configuration.html).
```toml ```toml
concurrent = 4 concurrent = 4
...@@ -155,7 +155,7 @@ This `config.toml`: ...@@ -155,7 +155,7 @@ This `config.toml`:
### `docker` executor example ### `docker` executor example
Let's assume that you have the following [config.toml](https://docs.gitlab.com/runner/configuration/advanced-configuration.html). Let's assume that you have the following [`config.toml`](https://docs.gitlab.com/runner/configuration/advanced-configuration.html).
```toml ```toml
concurrent = 4 concurrent = 4
...@@ -216,7 +216,7 @@ but this brings administrative overhead as the `.gitlab-ci.yml` needs to be upda ...@@ -216,7 +216,7 @@ but this brings administrative overhead as the `.gitlab-ci.yml` needs to be upda
In such cases, it might be desirable to keep the `.gitlab-ci.yml` clone path agnostic, but make it In such cases, it might be desirable to keep the `.gitlab-ci.yml` clone path agnostic, but make it
a configuration of Runner. a configuration of Runner.
We can extend our [config.toml](https://docs.gitlab.com/runner/configuration/advanced-configuration.html) We can extend our [`config.toml`](https://docs.gitlab.com/runner/configuration/advanced-configuration.html)
with the following specification that will be used by Runner if `.gitlab-ci.yml` will not override it: with the following specification that will be used by Runner if `.gitlab-ci.yml` will not override it:
```toml ```toml
......
...@@ -1008,7 +1008,7 @@ of language classes available. ...@@ -1008,7 +1008,7 @@ of language classes available.
| `ruby` | Alias: `rb`. | | `ruby` | Alias: `rb`. |
| `shell` | Aliases: `bash` or `sh`. | | `shell` | Aliases: `bash` or `sh`. |
| `sql` | | | `sql` | |
| `toml` | Runner configuration examples, and other toml formatted configuration files. | | `toml` | Runner configuration examples, and other TOML-formatted configuration files. |
| `typescript` | Alias: `ts`. | | `typescript` | Alias: `ts`. |
| `xml` | | | `xml` | |
| `yaml` | Alias: `yml`. | | `yaml` | Alias: `yml`. |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment