**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
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:
3
.github/workflows/codesniffer-ruff.yml
vendored
3
.github/workflows/codesniffer-ruff.yml
vendored
@@ -1,8 +1,7 @@
|
|||||||
name: Ruff (Python code sniffer)
|
name: Ruff (Python code sniffer)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
codesniffer-ruff:
|
codesniffer-ruff:
|
||||||
|
|||||||
3
.github/workflows/codesniffer-shellcheck.yml
vendored
3
.github/workflows/codesniffer-shellcheck.yml
vendored
@@ -1,8 +1,7 @@
|
|||||||
name: ShellCheck
|
name: ShellCheck
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
codesniffer-shellcheck:
|
codesniffer-shellcheck:
|
||||||
|
|||||||
Reference in New Issue
Block a user