From f63b0a9f087670e9e1fee047281bb7e7497bb75a Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sun, 14 Dec 2025 16:21:57 +0100 Subject: [PATCH] chore(ci): rename codesniffer workflows to linter - Rename ShellCheck workflow to linter-shell - Rename Ruff workflow to linter-python - Update workflow calls and dependencies accordingly https://chatgpt.com/share/693ed61a-7490-800f-aef1-fce845e717a2 --- .github/workflows/ci.yml | 8 ++++---- .../{codesniffer-ruff.yml => linter-python.yml} | 2 +- .../{codesniffer-shellcheck.yml => linter-shell.yml} | 2 +- .github/workflows/mark-stable.yml | 12 ++++++------ 4 files changed, 12 insertions(+), 12 deletions(-) rename .github/workflows/{codesniffer-ruff.yml => linter-python.yml} (94%) rename .github/workflows/{codesniffer-shellcheck.yml => linter-shell.yml} (92%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 681f171..3140513 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,8 +28,8 @@ jobs: test-virgin-root: uses: ./.github/workflows/test-virgin-root.yml - codesniffer-shellcheck: - uses: ./.github/workflows/codesniffer-shellcheck.yml + linter-shell: + uses: ./.github/workflows/linter-shell.yml - codesniffer-ruff: - uses: ./.github/workflows/codesniffer-ruff.yml + linter-python: + uses: ./.github/workflows/linter-python.yml diff --git a/.github/workflows/codesniffer-ruff.yml b/.github/workflows/linter-python.yml similarity index 94% rename from .github/workflows/codesniffer-ruff.yml rename to .github/workflows/linter-python.yml index d7b1297..10fd460 100644 --- a/.github/workflows/codesniffer-ruff.yml +++ b/.github/workflows/linter-python.yml @@ -4,7 +4,7 @@ on: workflow_call: jobs: - codesniffer-ruff: + linter-python: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/codesniffer-shellcheck.yml b/.github/workflows/linter-shell.yml similarity index 92% rename from .github/workflows/codesniffer-shellcheck.yml rename to .github/workflows/linter-shell.yml index 7e4e01b..5a08b19 100644 --- a/.github/workflows/codesniffer-shellcheck.yml +++ b/.github/workflows/linter-shell.yml @@ -4,7 +4,7 @@ on: workflow_call: jobs: - codesniffer-shellcheck: + linter-shell: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/mark-stable.yml b/.github/workflows/mark-stable.yml index a9c9a77..7144f7d 100644 --- a/.github/workflows/mark-stable.yml +++ b/.github/workflows/mark-stable.yml @@ -29,16 +29,16 @@ jobs: test-virgin-root: uses: ./.github/workflows/test-virgin-root.yml - codesniffer-shellcheck: - uses: ./.github/workflows/codesniffer-shellcheck.yml + linter-shell: + uses: ./.github/workflows/linter-shell.yml - codesniffer-ruff: - uses: ./.github/workflows/codesniffer-ruff.yml + linter-python: + uses: ./.github/workflows/linter-python.yml mark-stable: needs: - - codesniffer-shellcheck - - codesniffer-ruff + - linter-shell + - linter-python - test-unit - test-integration - test-env-nix