From 074b255c24da88d8b925575a1e004b6427ecd07e Mon Sep 17 00:00:00 2001 From: dgibbs64 Date: Wed, 30 Jul 2025 16:49:48 +0000 Subject: [PATCH] chore: synced local './' with remote 'docker/' --- .editorconfig | 2 ++ .../action-dockerhub-description.yml | 25 +++++++++++++++++++ .vscode/extensions.json | 9 ++++--- 3 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/action-dockerhub-description.yml diff --git a/.editorconfig b/.editorconfig index 4815e84..23f93e9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,10 +14,12 @@ insert_final_newline = true # YAML Files [*.{yml,yaml}] indent_size = 2 +indent_style = space # JSON Files [*.{json,json5,webmanifest}] indent_size = 2 +indent_style = space # BASH Files [*.{.sh}] diff --git a/.github/workflows/action-dockerhub-description.yml b/.github/workflows/action-dockerhub-description.yml new file mode 100644 index 0000000..cf9a77b --- /dev/null +++ b/.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 }} diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 1b191c0..abd365b 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,7 @@ { - "recommendations": [ - "editorconfig.editorconfig", - "esbenp.prettier-vscode" - ] + "recommendations": [ + "editorconfig.editorconfig", + "esbenp.prettier-vscode", + "github.vscode-github-actions" + ] }