Skip to content

Update Addressesapi #4435

Update Addressesapi

Update Addressesapi #4435

Workflow file for this run

name: Update Addressesapi
on:
schedule:
- cron: "0 */1 * * *"
workflow_dispatch:
jobs:
Update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run main.py
run: python3 main.py
- name: Commit & Push Changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add addressesapi.txt
git diff --cached --quiet || (git commit -m "Update Addressesapi" && git push)