一键导入
github-workflow-automation
GitHub Actions workflow automation, CI/CD pipeline management, and monitoring using the GitHub CLI (gh).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GitHub Actions workflow automation, CI/CD pipeline management, and monitoring using the GitHub CLI (gh).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Develop and contribute to the Plexium codebase — package structure, build commands, test patterns, architecture layers
Operate within a Plexium-powered repository — read wiki before work, update wiki after changes, follow ownership rules, use retrieval
Use when the user wants to install or verify the Plexium CLI from inside Codex.
Use when the user wants to initialize Plexium, set up the current repository for Codex, verify readiness, or connect Plexium's MCP server in Codex.
Use when the user wants to install Plexium, set up the current repo for Claude Code, verify readiness, or query the Plexium wiki from Claude Code.
Use when the user wants to search or retrieve information from the Plexium wiki in the current repository.
| name | github-workflow-automation |
| version | 2.0.0 |
| category | github |
| description | GitHub Actions workflow automation, CI/CD pipeline management, and monitoring using the GitHub CLI (gh). |
| tags | ["github","github-actions","ci-cd","workflow-automation","gh-cli"] |
Manage and monitor GitHub Actions workflows directly from the command line using the GitHub CLI (gh).
# List all workflows in the repository
gh workflow list
# Run a specific workflow
gh workflow run "CI Pipeline" --ref main
# Run a workflow with inputs
gh workflow run deploy.yml -f environment=production -f debug=true
# List recent workflow runs
gh run list --limit 10
# Watch a run in progress (interactive)
gh run watch
# View logs for a specific run (or the last one)
gh run view --log
Quickly find out why a CI job failed.
# Get the status of the latest run
gh run list --status failure --limit 1
# View the failed job logs
gh run view <run-id> --log-failed
# Set a repository secret for Actions
gh secret set API_TOKEN --body "your-token-here"
# Set an environment secret
gh secret set DB_PASSWORD --env production --body "secure-password"
# List variables
gh variable list
When generating new workflows, adhere to these best practices:
actions/checkout@v4 and actions/setup-node@v4 (or current latest versions).on: push, on: pull_request, on: workflow_dispatch).concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true