From 0c1dbde2da72c44e416f6cf8f9459b62116ff838 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Mon, 31 Aug 2026 23:19:00 +0200 Subject: [PATCH] ci: delegate pre-commit linting to central global scoped workflow (#48) This PR removes the redundant local workflow file (`.gitea/workflows/lint.yaml`) in favor of the central **Global Scoped Workflow** hosted in `Global-Workflows` (`.gitea/scoped_workflows/lint.yaml`). ### Checklist - [x] I changed the Branch protections to fit the new pipeline setup. Reviewed-on: https://git.horstenkamp.eu/Philipp/gitea-act-create-pr/pulls/48 --- .gitea/workflows/lint.yaml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .gitea/workflows/lint.yaml diff --git a/.gitea/workflows/lint.yaml b/.gitea/workflows/lint.yaml deleted file mode 100644 index d13f705..0000000 --- a/.gitea/workflows/lint.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: Lint - -on: - push: - -jobs: - auto-update: - name: pre-commit Autoupdate - runs-on: python - env: - SPECIFIC_BRANCH: chore/update-pre-commit - steps: - - uses: actions/checkout@v7 - - uses: actions/setup-python@v7 - - run: pip install pre-commit - shell: bash - - name: pre-commit - run: SKIP=no-commit-to-branch pre-commit run -a