From 7c5cb5ffecc1a5ac82318320c8718391963ec805 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Mon, 31 Aug 2026 23:28:52 +0200 Subject: [PATCH] ci: delegate pre-commit linting to central global scoped workflow (#119) 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 - [ ] I changed the Branch protections to fit the new pipeline setup. Reviewed-on: https://git.horstenkamp.eu/Screeps/screeps-deploy-action/pulls/119 Reviewed-by: LLMReview <27+autoreview@noreplay.horstenkamp.eu> --- .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 e8f9d48..0000000 --- a/.gitea/workflows/lint.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: Lint - -on: - push: - workflow_dispatch: - -jobs: - pre-commit-lint: - name: pre-commit Linting - runs-on: pi - steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 - - run: pip install pre-commit - shell: bash - - name: Pre Commit - run: SKIP=no-commit-to-branch pre-commit run -a - shell: bash