deploy-backend

Triggers a GitHub Actions backend deployment workflow for a specified branch and operation.

Updated Dec 23, 2025
One-click install
npx skills add https://github.com/zuldare/apuntesIA --skill deploy-backend-zuldare
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deploy-backend
Source: https://github.com/zuldare/apuntesIA/tree/main/skills/deploy-backend
Command: npx skills add https://github.com/zuldare/apuntesIA --skill deploy-backend-zuldare

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually navigating GitHub Actions to trigger backend deployment pipelines is repetitive and error-prone, especially when you need to specify the correct branch and operation type. This Skill automates the entire trigger process with a single command. ## Core Features & Use Cases - One-command deployments: Trigger the backend pipeline for the current branch or any specified branch without leaving your workflow. - Multiple operation modes: Supports deploy, compilation-only, feature, release, hotfix, and release-closing operations. - Automatic context detection: Detects the repository name, organization, and current branch from git remotes automatically. - Use Case: You just finished a feature branch and want to deploy it. Instead of opening GitHub, finding the workflow, and filling in inputs, you simply say "deploy feature/foo" and the pipeline starts. ## Quick Start Ask the AI to deploy the current branch by saying "deploy" or "/deploy-backend", optionally specifying a branch name or "compile" for a compilation-only run.

Frequently Asked Questions about deploy-backend

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I trigger a GitHub Actions workflow from the command line?▼

Use the gh CLI command gh workflow run with the workflow name, repository, and input parameters. This Skill runs gh workflow run with the operations and branch inputs against the backend pipeline workflow.

How to deploy a specific branch with GitHub Actions?▼

Provide the branch name as an argument, for example /deploy-backend feature/foo. The Skill passes that branch as the branch workflow input while triggering the pipeline on the repository's master ref.

Can I run a compilation without deploying?▼

Yes, say "compile" or "compilation" when invoking the Skill. It sets the operations input to "compilation (no deploy)", which builds the branch without performing a deployment.

What operations does the backend pipeline support?▼

The workflow accepts compilation (no deploy), deploy, feature, release, close release, close release and deploy master, hotfix, and close hotfix. Any other input defaults to the standard deploy operation.

How do I check the status of a triggered workflow run?▼

Ask the Skill to check status and it runs gh run list filtered by repository and branch with a limit of one. This shows the most recent run so you can confirm the pipeline started.