Files
hassio-addons/.github/workflows/generate_stargazer_map.yml
dependabot[bot] 5552f34bc1 Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [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/v4...v5)

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-12 00:42:50 +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@v5
- name: Set up Python
uses: actions/setup-python@v5
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