Files
emoji/.github/workflows/generate-listings.yml
renovate[bot] a77297f948 chore(deps): update python (3.12.12 → 3.14.3) (#35)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-01 21:54:04 +02:00

31 lines
835 B
YAML

name: Generate Listings
on:
push:
paths:
- 'emoji/**'
- 'create_listing.py'
branches:
- master
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: '3.14'
- name: Generate listings
run: python3 create_listing.py
- name: Commit changes
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add README.md index.html
git diff --staged --quiet || git commit -m "Update listings"
git push