Files
hassio-addons/.github/workflows/generate_stargazer_map.yml
dependabot[bot] 181743e157 Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-22 18:02:32 +00:00

36 lines
1.0 KiB
YAML

name: Stargazer map & cache
on:
workflow_dispatch: # manual
schedule: # weekly on Sunday 00:00 UTC
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install deps
run: |
pip install requests numpy pandas geopy pycountry plotly kaleido
- name: Run script
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: alexbelgium/hassio-addons
run: python .github/generate_map.py
- name: Commit PNG + CSV
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .github/stargazer_map.png .github/stargazer_countries.csv
git commit -m "Update stargazer map & cache" || echo "No changes"
git push --force