**Refactor CI: make Ruff and ShellCheck reusable via workflow_call**
Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / codesniffer-ruff (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled

* Convert Ruff and ShellCheck workflows to `workflow_call`
* Remove direct `push` / `pull_request` triggers
* Run sniffers only through centralized CI and release pipelines
* Prevent duplicate and uncontrolled sniffer executions

https://chatgpt.com/share/693d5f9a-5e70-800f-95da-837be2aedb4f
This commit is contained in:
Kevin Veen-Birkenbach
2025-12-13 13:44:04 +01:00
parent 5ff15013d7
commit 5601ea442a
2 changed files with 2 additions and 4 deletions

View File

@@ -1,8 +1,7 @@
name: Ruff (Python code sniffer)
on:
push:
pull_request:
workflow_call:
jobs:
codesniffer-ruff:

View File

@@ -1,8 +1,7 @@
name: ShellCheck
on:
push:
pull_request:
workflow_call:
jobs:
codesniffer-shellcheck: