-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (27 loc) · 942 Bytes
/
update.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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/base16-builder-go@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>