Update Icons #179
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |