mirror of https://github.com/alantang1977/pg
Create emoji manager.yml
This commit is contained in:
parent
cd6909b643
commit
497c16c0c6
|
@ -0,0 +1,29 @@
|
||||||
|
name: Emoji Manager
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- 'emojis/**'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
emoji-replacement:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.10'
|
||||||
|
|
||||||
|
- name: Run emoji manager
|
||||||
|
run: |
|
||||||
|
cd emojis
|
||||||
|
python emoji_manager.py
|
||||||
|
|
||||||
|
- name: Commit and push changes
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v5
|
||||||
|
with:
|
||||||
|
commit_message: 'chore: update emoji output'
|
||||||
|
branch: ${{ github.ref }}
|
Loading…
Reference in New Issue