diff options
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c63281a2..88edbe34 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,21 +2,21 @@ name: instances-updater on: schedule: - - cron: '10 22 */3 * *' - + - cron: "10 22 */3 * *" + workflow_dispatch: jobs: build: runs-on: ubuntu-latest - steps: + steps: - name: get repo content uses: actions/checkout@v2 - name: setup python uses: actions/setup-python@v2 with: - python-version: '3.8' # install the python version needed + python-version: "3.8" # install the python version needed - name: install python packages run: | @@ -24,7 +24,7 @@ jobs: pip install requests bs4 colorama - name: run script run: python src/instances/get_instances.py - + - name: commit files run: | git config --local user.email "action@github.com" |