From 10da8204f33e07afa866abd5931e09a7825cdab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Sun, 15 Mar 2026 15:51:25 -0700 Subject: [PATCH] chore: clean up CI workflow naming MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename workflow files for consistent hyphenated naming: - commitlint.yml → commit-lint.yml - lint.yml → just-lint.yml Update just-lint.yml to match consistent style across repos and bump setup-just from v2 to v3. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .../{commitlint.yml => commit-lint.yml} | 0 .github/workflows/just-lint.yml | 18 ++++++++++++++++++ .github/workflows/lint.yml | 12 ------------ 3 files changed, 18 insertions(+), 12 deletions(-) rename .github/workflows/{commitlint.yml => commit-lint.yml} (100%) create mode 100644 .github/workflows/just-lint.yml delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commit-lint.yml similarity index 100% rename from .github/workflows/commitlint.yml rename to .github/workflows/commit-lint.yml diff --git a/.github/workflows/just-lint.yml b/.github/workflows/just-lint.yml new file mode 100644 index 0000000..6be94d2 --- /dev/null +++ b/.github/workflows/just-lint.yml @@ -0,0 +1,18 @@ +--- +name: Just Lint + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - name: Install just + uses: extractions/setup-just@v3 + - name: Lint justfiles + run: just --justfile just.just --working-directory . fmt-check diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 144a780..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Lint -on: - pull_request: - branches: ["main"] -jobs: - justfmt: - name: Justfile Formatting - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - - uses: extractions/setup-just@v2 - - run: just --justfile just.just --working-directory . fmt-check