From 6ebef8e058cb89d7ecf3153e1e12e1c618144d5f Mon Sep 17 00:00:00 2001 From: Marco D'Aleo Date: Tue, 9 Dec 2025 12:56:06 +0000 Subject: [PATCH 1/2] Rename .github folder to .gitea --- {.github => .gitea}/CODEOWNERS | 0 {.github => .gitea}/workflows/lint-and-security.yml | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename {.github => .gitea}/CODEOWNERS (100%) rename {.github => .gitea}/workflows/lint-and-security.yml (100%) diff --git a/.github/CODEOWNERS b/.gitea/CODEOWNERS similarity index 100% rename from .github/CODEOWNERS rename to .gitea/CODEOWNERS diff --git a/.github/workflows/lint-and-security.yml b/.gitea/workflows/lint-and-security.yml similarity index 100% rename from .github/workflows/lint-and-security.yml rename to .gitea/workflows/lint-and-security.yml From c2f52b804934558fda03b1bab50805f308fd23f1 Mon Sep 17 00:00:00 2001 From: Marco D'Aleo Date: Tue, 9 Dec 2025 13:08:10 +0000 Subject: [PATCH 2/2] Use pre-commit directly instead of action --- .gitea/workflows/lint-and-security.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/lint-and-security.yml b/.gitea/workflows/lint-and-security.yml index 6ada047..b74bef1 100644 --- a/.gitea/workflows/lint-and-security.yml +++ b/.gitea/workflows/lint-and-security.yml @@ -20,7 +20,7 @@ jobs: run: pip install pre-commit - name: Run pre-commit hooks - uses: pre-commit/action@v3.0.1 + run: pre-commit run --all-files --color always - name: Install pip-audit run: pip install pip-audit