CtrlK
BlogDocsLog inGet started
Tessl Logo

pantheon-ai/github-actions-toolkit

Complete GitHub Actions toolkit with generation and validation capabilities for workflows, custom actions, and CI/CD configurations

97

Quality

97%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Advisory

Suggest reviewing before use

Overview
Quality
Evals
Security
Files

entrypoint.shgenerator/assets/templates/action/docker/

#!/bin/bash
set -e

# Action entrypoint script
# Arguments are passed from action.yml

[INPUT_1]="$1"
[INPUT_2]="$2"

# Validate inputs
if [ -z "$[INPUT_1]" ]; then
  echo "::error::[INPUT_1] is required"
  exit 1
fi

echo "::group::Running [ACTION_NAME]"
echo "Input 1: $[INPUT_1]"
echo "Input 2: $[INPUT_2]"

# Main action logic
[MAIN_COMMAND]

# Set outputs
echo "[output-name]=[OUTPUT_VALUE]" >> "$GITHUB_OUTPUT"

echo "::endgroup::"
echo "✅ Action completed successfully"

generator

assets

templates

action

SKILL.md

tile.json