mirror of
https://github.com/daylinmorgan/monolisa-nerdfont-patch.git
synced 2024-11-09 08:33:16 -06:00
34 lines
754 B
YAML
34 lines
754 B
YAML
name: "Update Nerd Fonts"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# 1st and 15th at 12:00 AM
|
|
- cron: "0 0 1,15 * *"
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
change-batteries:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Git Bot
|
|
run: |
|
|
git --version
|
|
git config user.name 'github-actions[bot]'
|
|
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
|
|
|
- name: Check Nerd-Fonts Source
|
|
run: make update-src
|
|
|
|
- name: Commit Updates
|
|
run: |
|
|
if [[ -n "$(git status --porcelain)" ]]; then
|
|
git add -A
|
|
git commit -m "chore: change batteries"
|
|
git push
|
|
fi
|