원클릭으로
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