techaicompositeaction
Create or modify reusable GitHub composite actions with secure Bash and deterministic behavior.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create or modify reusable GitHub composite actions with secure Bash and deterministic behavior.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | TechAICompositeAction |
| description | Create or modify reusable GitHub composite actions with secure Bash and deterministic behavior. |
.github/actions/.name, description, and typed inputs.eval and untrusted command execution.env for shell consumption.name: Validate Input
description: Validate required inputs before action logic
inputs:
target:
description: Target environment
required: true
runs:
using: composite
steps:
- shell: bash
env:
TARGET: ${{ inputs.target }}
run: |
set -euo pipefail
if [[ -z "$TARGET" ]]; then
echo "❌ target is required" >&2
exit 1
fi
echo "✅ input validated"
set -euo pipefail, quoted vars).Produce concise, complete pull request descriptions aligned with the repository PR template.
Repository-specific topology, naming patterns, and validation guidance for working in the oneidentity repository.
Create or modify secure GitHub Actions workflows for CI/CD pipelines.
Create or modify governance policies for AWS SCP, Azure Policy, and GCP Org Policy.
Safely update structured JSON/YAML registry files (users, groups, teams, repositories, or policy maps).
Create or modify Python application components using DDD boundaries, early returns, and deterministic pytest coverage.