ci-e2e-debug
Installation
SKILL.md
CI E2E Debug Skill
Download test log artifacts from a GitHub Actions CI run and inspect them for errors.
Steps
-
Find the artifact: Use
gh apito list artifacts for the given CI run:gh api repos/apache/skywalking/actions/runs/<RUN_ID>/artifacts --jq '.artifacts[] | {id: .id, name: .name}' -
Download and extract: Download the artifact zip and extract it:
cd /tmp && rm -rf e2e-debug-logs && mkdir e2e-debug-logs && cd e2e-debug-logs gh api repos/apache/skywalking/actions/artifacts/<ARTIFACT_ID>/zip > artifact.zip unzip -o artifact.zip