-
-
Notifications
You must be signed in to change notification settings - Fork 480
30 lines (29 loc) · 1.06 KB
/
update-icons.yaml
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
name: Retrieve latest icons from excel file
on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
jobs:
main:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download icons json file
run: |
python -m pip install xlrd==1.2.0
git config user.email "[email protected]"
git config user.name "Excel Bot"
python scripts/generate_json_from_excel.py
git commit WebBasedData/screenshot-database.json -m "Update icons and screenshots"
exit 0
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
delete-branch: true
base: main
title: "Update icons and screenshots from the excel file"
reviewers: "${{ github.repository_owner }}"
author: "Excel Bot <[email protected]>"
commit-message: "Update icons and screenshots from the excel file"
branch: pull-request/update-icons-and-screenshots