From a380b9da8296b889e2ce30445bad8802a94a8c44 Mon Sep 17 00:00:00 2001 From: Lars Winzer Date: Thu, 11 Jun 2026 14:46:07 +0200 Subject: [PATCH 1/2] Move: Issue templates from .github to .gitea folder --- {.github => .gitea}/ISSUE_TEMPLATE/config.yml | 0 {.github => .gitea}/ISSUE_TEMPLATE/feature_request.yml | 0 {.github => .gitea}/ISSUE_TEMPLATE/issue_report.yml | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename {.github => .gitea}/ISSUE_TEMPLATE/config.yml (100%) rename {.github => .gitea}/ISSUE_TEMPLATE/feature_request.yml (100%) rename {.github => .gitea}/ISSUE_TEMPLATE/issue_report.yml (100%) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.gitea/ISSUE_TEMPLATE/config.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/config.yml rename to .gitea/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.gitea/ISSUE_TEMPLATE/feature_request.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.yml rename to .gitea/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/issue_report.yml b/.gitea/ISSUE_TEMPLATE/issue_report.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/issue_report.yml rename to .gitea/ISSUE_TEMPLATE/issue_report.yml From 08c58f10c226c3ebd18b922adeca045092bd8f9c Mon Sep 17 00:00:00 2001 From: Lars Winzer Date: Thu, 11 Jun 2026 14:46:40 +0200 Subject: [PATCH 2/2] Remove: Workflow files --- .github/workflows/bandit.yml | 15 ---------- .github/workflows/release-docker.yml | 44 ---------------------------- .github/workflows/ruff.yml | 9 ------ 3 files changed, 68 deletions(-) delete mode 100644 .github/workflows/bandit.yml delete mode 100644 .github/workflows/release-docker.yml delete mode 100644 .github/workflows/ruff.yml diff --git a/.github/workflows/bandit.yml b/.github/workflows/bandit.yml deleted file mode 100644 index c1adbb3..0000000 --- a/.github/workflows/bandit.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Code Analysis (Bandit) - -on: push -jobs: - bandit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: mdegis/bandit-action@v1.0 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - path: "src/" - level: high - confidence: high - exit_zero: true diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml deleted file mode 100644 index f9aa64f..0000000 --- a/.github/workflows/release-docker.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Release Multi-Arch Docker Image - -on: - release: - types: [published] - -permissions: - contents: read - packages: write - -jobs: - build-and-push-docker: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Log in to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Transform 'github.repository' to lowercase - id: lowercase_repo - shell: bash - run: echo "repository=${GITHUB_REPOSITORY,,}" >> $GITHUB_OUTPUT - - - name: Build and push multi-arch image - uses: docker/build-push-action@v5 - with: - context: . - push: true - platforms: linux/amd64,linux/arm64 - tags: | - ghcr.io/${{ steps.lowercase_repo.outputs.repository }}:${{ github.event.release.tag_name }} - ghcr.io/${{ steps.lowercase_repo.outputs.repository }}:latest diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml deleted file mode 100644 index 038f8b9..0000000 --- a/.github/workflows/ruff.yml +++ /dev/null @@ -1,9 +0,0 @@ -name: Linting (Ruff) - -on: [push, pull_request] -jobs: - ruff: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: astral-sh/ruff-action@v3