Skip to content

Add debug step to investigate missing results artifacts - #51

Closed
adityamandaleeka wants to merge 1 commit into
dotnet:mainfrom
adityamandaleeka:temp_debug
Closed

Add debug step to investigate missing results artifacts#51
adityamandaleeka wants to merge 1 commit into
dotnet:mainfrom
adityamandaleeka:temp_debug

Conversation

@adityamandaleeka

Copy link
Copy Markdown
Member

No description provided.

Copilot AI review requested due to automatic review settings February 20, 2026 03:48

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a dedicated debugging step in the evaluation GitHub Actions workflow to help diagnose cases where the expected results.json artifact isn’t being produced or uploaded.

Changes:

  • Introduces a new “Debug results dir” step that always runs to print the working directory, locate results.json, and list .skill-validator-results/.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

if: always()
run: |
echo "cwd: $(pwd)"
find . -path './.git' -prune -o -name 'results.json' -print

Copilot AI Feb 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

find . will traverse nested .git dirs (e.g., .skill-validator/.git) and potentially large trees like .skill-validator/node_modules, which can add avoidable overhead/noisy logs on every run. Consider pruning all .git dirs (-name .git -prune) and/or limiting the search scope (e.g., search under .skill-validator-results or add -maxdepth / prune */node_modules).

Suggested change
find . -path './.git' -prune -o -name 'results.json' -print
find .skill-validator-results -name 'results.json' -print

Copilot uses AI. Check for mistakes.
moesac0970 pushed a commit to moesac0970/skills that referenced this pull request Jul 4, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants