You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add prettier formatting step after schema download
This fixes the issue where pkg/workflow/schemas/github-workflow.json
was reformatted inconsistently during the build process. The upstream
SchemaStore provides the schema with expanded arrays (multi-line format),
while our repository uses compact arrays (single-line format).
Without formatting after download, the schema would toggle between:
- Expanded format after download (upstream format)
- Compact format after make fmt (prettier compacts arrays)
Now the download-github-actions-schema target includes prettier formatting,
ensuring consistent compact array formatting regardless of upstream changes.
Co-authored-by: pelikhan <[email protected]>
0 commit comments