From 7b43ab189f028e0167e114731e8fadec3f575822 Mon Sep 17 00:00:00 2001 From: Midia Kiasat Date: Sat, 28 Feb 2026 13:12:38 +0100 Subject: [PATCH] fix: action.yml valid composite manifest (marketplace load) --- action.yml | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/action.yml b/action.yml index cfdfb0f..ad2be8a 100644 --- a/action.yml +++ b/action.yml @@ -1,24 +1,23 @@ name: cicullis -description: > - Deterministic CI gate enforcing irreversible decisions. +description: "Deterministic CI gate enforcing irreversible decisions." +author: "Midia Kiasat" +branding: + icon: shield + color: gray-dark -author: Midia Kiasat +inputs: + mode: + description: "pass|enforce" + required: false + default: "pass" runs: - using: composite + using: "composite" steps: - - name: CICULLIS gate - shell: bash - run: | - chmod +x "$GITHUB_ACTION_PATH/gate.sh" - "$GITHUB_ACTION_PATH/gate.sh" - - shell: bash + - name: CICULLIS gate + shell: bash + env: + CICULLIS_MODE: ${{ inputs.mode }} run: | - chmod +x gate.sh - ./gate.sh - -branding: - icon: slash - color: red - -# reindex: 2026-02-23T11:23:53Z + chmod +x "$GITHUB_ACTION_PATH/gate.sh" + "$GITHUB_ACTION_PATH/gate.sh"