1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00

Github actions add workflow_dispatch

This commit is contained in:
Mgldvd 2023-02-26 19:06:35 -05:00
parent f8c76aeba7
commit ac7689bcfe

View File

@ -1,6 +1,7 @@
name: Execute Python Scripts on New Theme-YML Files
on:
workflow_dispatch:
push:
paths:
- 'theme-yml/*'
@ -18,6 +19,11 @@ jobs:
apt -qq update
echo 🏅
- name: Install git
run: |
apt install git -y > /dev/null 2>&1
echo 🏅
- name: Install python3
run: |
apt install python3 -y > /dev/null 2>&1
@ -48,5 +54,5 @@ jobs:
git config user.name github-actions[bot]
git config user.email github-actions[bot]@github.com
git add .
git commit -m "------- Generate Themes Github Action -------"
git commit -m "------- Generate Themes -------"
git push