Skip to content

Commit 0c4f131

Browse files
committed
chore: synced local './' with remote 'docker/'
1 parent fb866c6 commit 0c4f131

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ insert_final_newline = true
1414
# YAML Files
1515
[*.{yml,yaml}]
1616
indent_size = 2
17+
indent_style = space
1718

1819
# JSON Files
1920
[*.{json,json5,webmanifest}]
2021
indent_size = 2
22+
indent_style = space
2123

2224
# BASH Files
2325
[*.{.sh}]
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@v4
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 }}

.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)