Skip to content

Retrieve latest icons from excel file #287

Retrieve latest icons from excel file

Retrieve latest icons from excel file #287

Workflow file for this run

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@v3
- 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@v5
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