From da1e18357cb25e3fb57256239744cd61161416ab Mon Sep 17 00:00:00 2001 From: Lovi <62809003+Lovi-0@users.noreply.github.com> Date: Thu, 2 Jan 2025 17:53:46 +0100 Subject: [PATCH] Update schedule --- .github/workflows/python-script.yml | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/python-script.yml diff --git a/.github/workflows/python-script.yml b/.github/workflows/python-script.yml new file mode 100644 index 0000000..e1f1ab9 --- /dev/null +++ b/.github/workflows/python-script.yml @@ -0,0 +1,44 @@ +name: Run Python Script + +on: + schedule: + - cron: '0 0 * * *' # Esegui ogni giorno a mezzanotte + workflow_dispatch: + +jobs: + run-script: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: '3.9' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Run script + run: | + python Test/call_updateDomain.py + + - name: Configure Git + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + + - name: Commit changes + run: | + git add . + git commit -m "Update output" || echo "No changes" + + - name: Push changes + uses: ad-m/github-push-action@v0.6.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: main \ No newline at end of file