From 468f7ba453065574fb39a12264a39532c32e9b7b Mon Sep 17 00:00:00 2001 From: Sall <59910950+ss-o@users.noreply.github.com> Date: Tue, 19 May 2026 05:10:48 +0100 Subject: [PATCH 1/2] ci(trunk): normalize workflow filename --- .github/workflows/trunk-check.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/trunk-check.yml diff --git a/.github/workflows/trunk-check.yml b/.github/workflows/trunk-check.yml new file mode 100644 index 0000000..cc36894 --- /dev/null +++ b/.github/workflows/trunk-check.yml @@ -0,0 +1,28 @@ +--- +name: Trunk Code Quality + +on: + push: + branches: [main] + tags: ["v*.*.*"] + pull_request: + types: [opened, synchronize, reopened] + workflow_dispatch: {} + +permissions: + contents: read + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + check: + name: Trunk Code Quality + permissions: + actions: read + checks: write + contents: read + uses: z-shell/.github/.github/workflows/trunk.yml@main + with: + arguments: --no-progress From 07bd34454643c539af3e1cd35cd42b1b52504881 Mon Sep 17 00:00:00 2001 From: Sall <59910950+ss-o@users.noreply.github.com> Date: Tue, 19 May 2026 05:11:12 +0100 Subject: [PATCH 2/2] ci(trunk): remove old workflow filename --- .github/workflows/trunk_check.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/trunk_check.yml diff --git a/.github/workflows/trunk_check.yml b/.github/workflows/trunk_check.yml deleted file mode 100644 index 3496f5c..0000000 --- a/.github/workflows/trunk_check.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: "⭕ Trunk" -on: - push: - branches: [main] - tags: ["v*.*.*"] - pull_request: - types: [opened, synchronize] - workflow_dispatch: {} - -jobs: - check: - name: "⚡" - uses: z-shell/.github/.github/workflows/trunk.yml@main - # secrets: - # trunk-token: ${{ secrets.TRUNK_TOKEN }} - with: - arguments: "--no-progress"