diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index a410ad4..0d22e3d 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -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 \ No newline at end of file