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
fix: standardize CSV/report output locations across scripts (#56)
Several reporting scripts wrote their output inconsistently: some to a
'reports/' subdirectory (with differing CWD- vs script-dir-relative
defaults), others to a hardcoded filename in the current directory.
- github-copilot-report.sh and github-repo-permissions-report.sh now
default their CSV output into $REPORT_DIR (default ./reports,
overridable via env var or their existing -o/--output flag).
- github-close-archived-repo-security-alerts.sh: renamed the
script-local REPORTS_DIR variable to the standard REPORT_DIR,
exposed it as an env var/action input, and defaulted it to ./reports
to match every other reporting script.
- github-archive-old-repos.sh: changed its REPORT_DIR default from a
script-directory-relative path to ./reports for consistency with
the rest of the fleet (still overridable).
- github-get-repo-list.sh: fixed a bug where it silently wrote to
./repo-list.csv in the working directory instead of stdout, despite
its own header, README, and action.yml all documenting stdout output.
Updated README.md, action.yml inputs, and script header comments to
document REPORT_DIR everywhere it now applies.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments