Skip to content

Commit 7391e94

Browse files
authored
chore: synced local './' with remote 'docker/' (#75)
1 parent 1691ecf commit 7391e94

File tree

4 files changed

+48
-10
lines changed

4 files changed

+48
-10
lines changed

.editorconfig

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,31 @@ root = true
55

66
[*]
77
charset = utf-8
8-
indent_style = space
9-
indent_size = 2
10-
trim_trailing_whitespace = true
118
end_of_line = lf
9+
indent_size = 4
10+
indent_style = tab
1211
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[.ansible-lint]
15+
indent_size = 2
16+
indent_style = space
17+
18+
[.yamllint]
19+
indent_size = 2
20+
indent_style = space
1321

1422
# YAML Files
1523
[*.{yml,yaml}]
1624
indent_size = 2
25+
indent_style = space
1726

1827
# JSON Files
1928
[*.{json,json5,webmanifest}]
2029
indent_size = 2
30+
indent_style = space
2131

2232
# BASH Files
2333
[*.{.sh}]
24-
indent_style = tab
2534
indent_size = 4
26-
35+
indent_style = tab
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Update Docker Hub Description
2+
on:
3+
workflow_dispatch:
4+
push:
5+
paths:
6+
- README.md
7+
- .github/workflows/dockerhub-description.yml
8+
branches:
9+
- main
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
dockerhub-description:
16+
name: Docker Hub Description
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v5
21+
22+
- name: Docker Hub Description
23+
uses: peter-evans/dockerhub-description@v4
24+
with:
25+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
26+
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
27+
repository: ${{ secrets.DOCKER_HUB_REPO }}
28+
short-description: ${{ github.event.repository.description }}

.prettierrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"plugins": ["prettier-plugin-sh"]
2+
"plugins": ["prettier-plugin-sh", "prettier-plugin-jinja-template"]
33
}

.vscode/extensions.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"recommendations": [
3-
"editorconfig.editorconfig",
4-
"esbenp.prettier-vscode"
5-
]
2+
"recommendations": [
3+
"editorconfig.editorconfig",
4+
"esbenp.prettier-vscode",
5+
"github.vscode-github-actions"
6+
]
67
}

0 commit comments

Comments
 (0)