Update with the latest tinted-theming colorschemes #72
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 colorschemes | |
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@v3 | |
with: | |
token: ${{ secrets.BOT_ACCESS_TOKEN }} | |
- name: Update schemes | |
uses: tinted-theming/base16-builder-go@latest | |
- name: Commit the changes, if any | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update with the latest colorschemes | |
branch: ${{ github.head_ref }} | |
commit_user_name: tinted-theming-bot | |
commit_user_email: [email protected] | |
commit_author: tinted-theming-bot <[email protected]> |