ci-pipeline
Installation
SKILL.md
/ci:pipeline: Push and trigger pipeline
Pushes the current branch and returns the pipeline tracking link.
Process
BRANCH=$(git branch --show-current)
# 1. Safety checks
if echo "$BRANCH" | grep -qE "^(main|master|production)$"; then
echo "❌ Direct push to $BRANCH is not allowed. Create a feature/fix branch."
exit 1
fi