Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Collect IPs

Collect IPs #14299

Workflow file for this run

name: "Collect IPs"
on:
push:
branches: [ "main" ]
schedule:
- cron: '*/15 * * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Resolve domains, collect and store IP addresses
run: |
python -m pip install dnspython
python collect.py
git config --global user.email "vahidfarid@gmail.com"
git config --global user.name "Vahid Farid"
git add -A
git commit -m "Automatic update"
git push