Skip to content

Commit 837ad46

Browse files
authored
Merge pull request #85 from dokku/rename-to-yaml
chore: rename yml to yaml
2 parents 399febe + 5bb4d9e commit 837ad46

15 files changed

+14
-14
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
name: 'lint'
2+
name: "lint"
33

44
# yamllint disable-line rule:truthy
55
on:
66
pull_request:
77
branches:
8-
- '*'
8+
- "*"
99
push:
1010
branches:
11-
- 'master'
11+
- "master"
1212

1313
jobs:
1414
hadolint:
@@ -31,8 +31,8 @@ jobs:
3131
uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb
3232
# v1.4.0 => 6e6d4393411fbaae3c3aeee5661ba84a0352ed3b
3333
with:
34-
config: '.github/linters/.markdown-lint.yml'
35-
args: './README.md'
34+
config: ".github/linters/.markdown-lint.yaml"
35+
args: "./README.md"
3636

3737
yamllint:
3838
name: yamllint
@@ -44,4 +44,4 @@ jobs:
4444
uses: ibiqlik/action-yamllint@2576378a8e339169678f9939646ee3ee325e845c
4545
# v3.0.0 => b2aeacc1b7eeb8c23e84bba320d04fb5d6a323ee
4646
with:
47-
config_file: '.github/linters/.yamllint.yml'
47+
config_file: ".github/linters/.yamllint.yaml"

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ All examples below are functionally complete and can be copy-pasted into a `.git
7575
7676
For simplicity, each example is standalone, but may be combined as necessary to create the desired effect.
7777
78-
- [Simple Example](/example-workflows/simple.yml): Deploys a codebase on push or merge to master.
79-
- [Build in CI and Deploy an image](/example-workflows/build-and-deploy.yml): Builds a docker image in CI, pushes the image to the remote Docker Hub repository, and then notifies Dokku to deploy the built image.
80-
- [Cancel previous runs on new push](/example-workflows/cancel-previous-runs.yml): This workflow is particularly useful when triggered by new pushes, and utilizes a third-party action.
81-
- [Avoid SSH Host Keyscan](/example-workflows/specify-ssh-host-key.yml): By default, this action will scan the host for it's SSH host key and use that value directly. This may not be desirable for security compliance reasons.
78+
- [Simple Example](/example-workflows/simple.yaml): Deploys a codebase on push or merge to master.
79+
- [Build in CI and Deploy an image](/example-workflows/build-and-deploy.yaml): Builds a docker image in CI, pushes the image to the remote Docker Hub repository, and then notifies Dokku to deploy the built image.
80+
- [Cancel previous runs on new push](/example-workflows/cancel-previous-runs.yaml): This workflow is particularly useful when triggered by new pushes, and utilizes a third-party action.
81+
- [Avoid SSH Host Keyscan](/example-workflows/specify-ssh-host-key.yaml): By default, this action will scan the host for it's SSH host key and use that value directly. This may not be desirable for security compliance reasons.
8282
8383
The `SSH_HOST_KEY` value can be retrieved by calling `ssh-keyscan -t rsa $HOST`, where `$HOST` is the Dokku server's hostname.
84-
- [Specify a custom deploy branch](/example-workflows/custom-deploy-branch.yml): Certain Dokku installations may use custom deploy branches other than `master`. In the following example, we push to the `develop` branch.
85-
- [Verbose Push Logging](/example-workflows/verbose-logging.yml): Verbose client-side logging may be enabled with this method, as well as trace mode for all shell command output. Note that this does not enable trace mode on the remote deploy, and simply tells the `git` client to enable verbose log output.
86-
- [Force Pushing](/example-workflows/force-push.yml): If the remote app has been previously pushed manually from a location other than CI, it may be necessary to enable force pushing to avoid git errors.
87-
- [Review Apps](/example-workflows/review-app.yml): Handles creation and deletion of review apps through use of `dokku apps:clone` and `dokku apps:destroy`. Review apps are a great way to allow folks to preview pull request changes before they get merged to production.
84+
- [Specify a custom deploy branch](/example-workflows/custom-deploy-branch.yaml): Certain Dokku installations may use custom deploy branches other than `master`. In the following example, we push to the `develop` branch.
85+
- [Verbose Push Logging](/example-workflows/verbose-logging.yaml): Verbose client-side logging may be enabled with this method, as well as trace mode for all shell command output. Note that this does not enable trace mode on the remote deploy, and simply tells the `git` client to enable verbose log output.
86+
- [Force Pushing](/example-workflows/force-push.yaml): If the remote app has been previously pushed manually from a location other than CI, it may be necessary to enable force pushing to avoid git errors.
87+
- [Review Apps](/example-workflows/review-app.yaml): Handles creation and deletion of review apps through use of `dokku apps:clone` and `dokku apps:destroy`. Review apps are a great way to allow folks to preview pull request changes before they get merged to production.
8888
- Placing a shell script at `bin/ci-pre-deploy` can be used to reconfigure the app, as shown in [this example](/example-workflows/review-app/ci-pre-deploy).
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)