Skip to content

Güncelleme | 50

Güncelleme | 50 #6361

Workflow file for this run

name: Güncelleme | 50
on:
schedule:
- cron: "*/3 * * * *"
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: "[➖] Güncelleme"
branch: ${{ github.head_ref }}
commit_user_name: heytrgithub
commit_user_email: brawlertarikiletisim@gmail.com
- name: 🚀 Generate new icons
run: pnpm app:generate
- name: ☑️ Commit Changes (generated icons)
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "[➕] Güncelleme"
branch: ${{ github.head_ref }}
commit_user_name: heytrgithub
commit_user_email: brawlertarikiletisim@gmail.com