ortus-boxlang/bx-sites-skills · Archived

bx-sites-actions

Operate and troubleshoot GitHub Actions workflows for ortus-boxlang/bx-sites. Use this when users ask about test failures, release runs, docs publish status, or rerunning/canceling workflows.

Installation

$ npx skills add ortus-boxlang/bx-sites-skills --skill bx-sites-actions

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from ortus-boxlang/bx-sites-skills · top by installs.

npx skills add ortus-boxlang/bx-sites-skills

Browse all from ortus-boxlang/bx-sites-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch development
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0
More metadata
version
1.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,265 B
  • docs SUMMARY.md 215 B

History

  1. First recorded snapshot · 4 installs

SKILL.md

bx-sites GitHub Actions Operations

Use this skill for CI and release operations in:

  • Repository: ortus-boxlang/bx-sites
  • Actions dashboard: https://github.com/ortus-boxlang/bx-sites/actions

Workflow inventory

Primary workflows in bx-sites:

Workflow File Typical purpose
Daily Tests .github/workflows/cron.yml Scheduled daily run of test suites
Pull Requests .github/workflows/pr.yml PR/branch validation
Test Suites .github/workflows/tests.yml Core reusable test workflow
Build Snapshot .github/workflows/snapshot.yml Development snapshot build after tests
Release .github/workflows/release.yml Stable release and version/tag flow
Docbox .github/workflows/docbox.yml API docs generation and publishing
Publish Docs .github/workflows/pages.yml Multi-theme site build + Pages deploy

Required troubleshooting flow

When users mention CI/build/test/workflow failures, always do this:

  1. List recent runs for the target workflow or repository.
  2. Inspect failed jobs and fetch logs.
  3. Identify the first actionable root cause.
  4. Recommend minimal remediation steps.
  5. If requested, trigger rerun or cancel stuck runs.

Suggested GitHub tool operations

  • List workflows: actionslist(method=listworkflows)
  • List runs: actionslist(method=listworkflowruns, resourceid=<workflow id or file>)
  • List jobs: actionslist(method=listworkflowjobs, resourceid=<run id>)
  • Read logs: getjoblogs(jobid=<job id>, returncontent=true)
  • Rerun run: actionsruntrigger(method=rerunworkflowrun, run_id=<run id>)
  • Rerun failed jobs: actionsruntrigger(method=rerunfailedjobs, run_id=<run id>)
  • Cancel run: actionsruntrigger(method=cancelworkflowrun, run_id=<run id>)

Output expectations

For each investigation, report:

  • Workflow/run/job identifiers
  • Failing step name
  • Direct error excerpt from logs
  • Root cause summary
  • Minimal fix or rerun recommendation