-
-
Notifications
You must be signed in to change notification settings - Fork 0
Viewing Reports
Ferran Buireu edited this page Feb 15, 2026
·
3 revisions
Multiple ways to access your star tracking data.
All data is automatically saved to a dedicated branch (default: star-tracker-data).
| File | Description |
|---|---|
README.md |
Full Markdown report with embedded SVG charts |
stars-data.json |
Complete historical data (JSON) |
stars-badge.svg |
Star count badge |
charts/star-history.svg |
Animated total stars chart |
charts/comparison.svg |
Top repos comparison chart |
charts/forecast.svg |
Growth forecast chart |
charts/{owner}-{repo}.svg |
Per-repo charts |
stargazers.json |
Stargazer login map (if track-stargazers enabled) |
Navigate to:
https://github.com/YOUR_USER/YOUR_REPO/tree/star-tracker-data
GitHub automatically renders README.md with all charts visible.
Display your star count in your main README.
[](https://github.com/YOUR_USER/YOUR_REPO/tree/star-tracker-data)<!-- Comparison chart -->

<!-- Forecast chart -->

<!-- Per-repo chart (replace owner-repo with your repo) -->
Access data in subsequent workflow steps for custom integrations.
| Output | Description |
|---|---|
report |
Full Markdown report |
report-html |
HTML report (for email) |
total-stars |
Total star count |
stars-changed |
Whether stars changed (true/false) |
new-stars |
Stars gained since last run |
lost-stars |
Stars lost since last run |
should-notify |
Whether notification threshold reached |
new-stargazers |
New stargazers detected |
- name: Track stars
id: tracker
uses: fbuireu/github-star-tracker@v1
with:
github-token: ${{ secrets.GITHUB_STAR_TRACKER_TOKEN }}
- name: Print summary
run: |
echo "Total stars: ${{ steps.tracker.outputs.total-stars }}"
echo "Changed: ${{ steps.tracker.outputs.stars-changed }}"
echo "New: ${{ steps.tracker.outputs.new-stars }}"
echo "Lost: ${{ steps.tracker.outputs.lost-stars }}"Send HTML reports directly to your inbox.
See Email Notifications for complete setup.
curl https://raw.githubusercontent.com/YOUR_USER/YOUR_REPO/star-tracker-data/stars-data.jsongit clone -b star-tracker-data --single-branch \
https://github.com/YOUR_USER/YOUR_REPO.git star-datacurl -s https://raw.githubusercontent.com/YOUR_USER/YOUR_REPO/star-tracker-data/stars-data.json \
| jq '.snapshots[0].totalStars'- Public repos: data branch is publicly visible
- Private repos: data branch inherits the repo's access restrictions; badges won't render for unauthorized users
- Star Trend Charts — Chart types and embedding
- Email Notifications — Email setup
- Data Management — How data is stored and rotated