Update with the latest schemes #28
This file contains 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 with the latest schemes | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 0" # https://crontab.guru/every-week | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch the repository code | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.BOT_ACCESS_TOKEN }} | |
- name: Update schemes | |
uses: tinted-theming/tinted-builder-rust@latest | |
- name: Update themes file | |
run: ./scripts/generate_themes_file | |
- name: Update skins file | |
run: ./scripts/generate_skins_file | |
- name: Commit the changes, if any | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update with the latest colorschemes | |
branch: ${{ github.head_ref }} | |
commit_user_name: tinted-theming-bot | |
commit_user_email: tintedtheming@proton.me | |
commit_author: tinted-theming-bot <tintedtheming@proton.me> |