Skip to content

Update Icons

Update Icons #179

Workflow file for this run

name: Update Icons
on:
workflow_dispatch:
schedule:
# Runs every day at 00:00 UTC
- cron: '0 0 * * *'
jobs:
update:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Update Submodule (selfh.st/icons)
run: bin/submodule
- name: Push Changes
run: |
git config user.email 251524733+berts-bot[bot]@users.noreply.github.com
git config user.name berts-bot[bot]
git add .
git commit -m "chore: updated selfh.st/icons submodule" || true
git push