mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 15:29:28 -05:00
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
# Updates the emoji/glyph list in src/caelestia/data/emojis.txt
|
|
|
|
name: Update emojis
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * 0"
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.x"
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install .
|
|
|
|
- name: Fetch emojis
|
|
run: ./run.sh emoji -f
|
|
|
|
- name: Check for changes
|
|
id: check
|
|
run: echo modified=$(git diff --exit-code src/caelestia/data/emojis.txt && echo 'false' || echo 'true') >> $GITHUB_OUTPUT
|
|
|
|
- name: Commit and push changes
|
|
if: steps.check.outputs.modified == 'true'
|
|
uses: EndBug/add-and-commit@v9
|
|
with:
|
|
add: src/caelestia/data/emojis.txt
|
|
default_author: github_actions
|
|
message: "[CI] emojis: update data"
|