What is this?
June 30, 2026 ยท View on GitHub
This directory contains different scripts that are used during development.
Table of Contents
Resources
- Project stats script
- This script is used to generate simple project stats. It will generate output with some basic stats about project.
- GitHub Actions update checker
- Checks pinned GitHub Actions from
.github/workflows/*.yml, reports discovery issues (unpinned refs/conflicting versions), and checks for available updates in the current major version line.
- Checks pinned GitHub Actions from
Project stats script
File: scripts/project-stats.sh
make project-stats
If you are already inside the container, you can still run
bash scripts/project-stats.sh directly.
GitHub Actions update checker
File: scripts/check-action-updates.sh
make check-action-updates
If you are already inside the container, you can still run
bash scripts/check-action-updates.sh directly.
Print current pins as markdown:
bash scripts/check-action-updates.sh --current-pins-md
Exit codes:
0= no discovery issues and no updates found1= updates available2= discovery issues found (for example unpinned refs or conflicting versions)