From e7e313b7d79c1a2d86a7ab3fb183eba49bde429d Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Thu, 23 Jul 2026 13:57:28 +0200 Subject: [PATCH] chore(config): Update git commands and CI runner platform Updated local development settings to include comprehensive Git status checks, improving developer workflow visibility. Additionally, the Arch package building job in the CI pipeline now targets archlinux runners for better environment parity during builds. - Added multiple bash commands for detailed git logging and status retrieval - Switched app builder workflow runner to archlinux --- .claude/settings.local.json | 7 ++++++- .gitea/workflows/app_builder.yaml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 875bd40..4706250 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -128,7 +128,12 @@ "Bash(find / -maxdepth 6 -iname \"config.yaml\" -path \"*runner*\")", "Read(//home/**)", "Bash(getent passwd *)", - "Bash(docker context *)" + "Bash(docker context *)", + "Bash(git -C /mnt/data/Development/GitLite log --oneline -1 -- PKGBUILD)", + "Bash(git -C /mnt/data/Development/GitLite show --stat HEAD -- PKGBUILD)", + "Bash(git -C /mnt/data/Development/GitLite log --oneline -10)", + "Bash(git -C /mnt/data/Development/GitLite status)", + "Bash(git *)" ] } } diff --git a/.gitea/workflows/app_builder.yaml b/.gitea/workflows/app_builder.yaml index 0ea8af5..2108a51 100644 --- a/.gitea/workflows/app_builder.yaml +++ b/.gitea/workflows/app_builder.yaml @@ -158,7 +158,7 @@ jobs: publish-arch: name: Build and publish Arch package - runs-on: ubuntu-22.04 + runs-on: archlinux environment: production env: MINIO_ENDPOINT: ${{ vars.MINIO_ENDPOINT }}