monolisa-nerdfont-patch/.github/workflows/ci.yml

35 lines
754 B
YAML
Raw Normal View History

2023-01-16 11:24:28 -06:00
name: "Update Nerd Fonts"
on:
workflow_dispatch:
2023-05-02 14:57:12 -05:00
schedule:
2023-01-16 11:24:28 -06:00
# 1st and 15th at 12:00 AM
2023-05-02 14:57:12 -05:00
- cron: "0 0 1,15 * *"
2023-01-16 11:24:28 -06:00
permissions:
contents: write
jobs:
change-batteries:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Git Bot
run: |
git --version
2023-09-29 18:37:19 -05:00
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
2023-01-16 11:24:28 -06:00
- 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