Skip to content

Update Icons

Update Icons #26463

Workflow file for this run

name: Update Icons
on:
schedule:
- cron: "*/10 * * * *"
workflow_dispatch:
jobs:
run-bot:
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
node: [18.x]
steps:
- name: 🧱 Checkout repository
uses: actions/checkout@v4
- name: πŸ”© Setup PNPM
uses: pnpm/action-setup@v2
with:
version: latest
- name: πŸ”© Setup Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: πŸš€ Install dependencies
run: pnpm install
- name: ✨ Remove icons
run: pnpm app:remove
- name: β˜‘οΈ Commit Changes (removed icons)
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "[✨] removed icons"
branch: ${{ github.head_ref }}
commit_user_name: binary-blazer
commit_user_email: jonasfranke@sdevs.org
- name: πŸš€ Generate new icons
run: pnpm app:generate
- name: β˜‘οΈ Commit Changes (generated icons)
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "[πŸš€] updated icons"
branch: ${{ github.head_ref }}
commit_user_name: binary-blazer
commit_user_email: jonasfranke@sdevs.org