Browse Source

chore: synced local './' with remote 'docker/'

dgibbs64 2 days ago
parent
commit
074b255c24
  1. 2
      .editorconfig
  2. 25
      .github/workflows/action-dockerhub-description.yml
  3. 9
      .vscode/extensions.json

2
.editorconfig

@ -14,10 +14,12 @@ insert_final_newline = true
# YAML Files # YAML Files
[*.{yml,yaml}] [*.{yml,yaml}]
indent_size = 2 indent_size = 2
indent_style = space
# JSON Files # JSON Files
[*.{json,json5,webmanifest}] [*.{json,json5,webmanifest}]
indent_size = 2 indent_size = 2
indent_style = space
# BASH Files # BASH Files
[*.{.sh}] [*.{.sh}]

25
.github/workflows/action-dockerhub-description.yml

@ -0,0 +1,25 @@
name: Update Docker Hub Description
on:
workflow_dispatch:
push:
paths:
- README.md
- .github/workflows/dockerhub-description.yml
branches:
- main
jobs:
dockerhub-description:
name: Docker Hub Description
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
repository: ${{ secrets.DOCKER_HUB_REPO }}
short-description: ${{ github.event.repository.description }}

9
.vscode/extensions.json

@ -1,6 +1,7 @@
{ {
"recommendations": [ "recommendations": [
"editorconfig.editorconfig", "editorconfig.editorconfig",
"esbenp.prettier-vscode" "esbenp.prettier-vscode",
] "github.vscode-github-actions"
]
} }

Loading…
Cancel
Save