Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 17 additions & 18 deletions action.yml
Original file line number Diff line number Diff line change
@@ -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"
Loading