Document safe-jobs as internal implementation detail distinct from safe-outputs.jobs#11600
Closed
Document safe-jobs as internal implementation detail distinct from safe-outputs.jobs#11600
Conversation
- Updated code comments in pkg/workflow/safe_jobs.go to clearly distinguish internal implementation details from user-facing API - Added comprehensive architecture documentation at the top of safe_jobs.go - Updated safe_jobs_test.go comments to clarify internal testing approach - Enhanced documentation in docs/src/content/docs/reference/safe-outputs.md to emphasize user-facing API - Updated compilation-process.md to use correct user-facing syntax (safe-outputs.jobs:) - Added $comment to schema (pkg/parser/schemas/main_workflow_schema.json) documenting internal implementation detail - Rebuilt binary with updated embedded schema The top-level "safe-jobs" key is correctly an internal implementation detail used only for parsing. Users should use "safe-outputs.jobs:" which is fully supported, documented, and defined in the schema. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Clarify safe-jobs field in schema and documentation
Document safe-jobs as internal implementation detail distinct from safe-outputs.jobs
Jan 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
safe-jobsfield access in compiler code caused confusion about whether it was missing from the schema. Reality:safe-outputs.jobsis the user-facing API (fully supported in schema), whilesafe-jobsis an internal parsing key never exposed to users.Architecture
The
extractSafeJobsFromFrontmatter()function readssafe-outputs.jobsand temporarily wraps it with asafe-jobskey forparseSafeJobsConfig()to process.Changes
pkg/workflow/safe_jobs.go): Added package-level architecture overview; clarifiedparseSafeJobsConfig()andextractSafeJobsFromFrontmatter()as internal implementation detailspkg/workflow/safe_jobs_test.go): Documented internal-only testing approachdocs/src/content/docs/reference/safe-outputs.md): Emphasized user-facingsafe-outputs.jobs:syntaxdocs/src/content/docs/reference/compilation-process.md): Changed "safe-jobs" reference to correct user-facing "safe-outputs.jobs:"pkg/parser/schemas/main_workflow_schema.json): Added$commenttosafe-outputs.jobsproperty documenting internal transformationNo functional changes. Zero user impact.
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.