Skip to content

Fetch IPs

Fetch IPs #2

Workflow file for this run

name: Fetch IPs
on:
schedule: # https://crontab.guru
- cron: '0 */2 * * *' # At minute 0 past every 2nd hour.
workflow_dispatch:
jobs:
fetch-data:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
ref: main
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Fetch IPs from API and update files
run: node worker.js
env:
SEFIN_API_KEY: ${{ secrets.SEFIN_API_KEY }}
- name: Check for changes
id: check_changes
run: |
git status -s > changes.txt
echo "::set-output name=has_changes::$(cat changes.txt | wc -l)"
- name: Commit and push changes if necessary
if: steps.check_changes.outputs.has_changes != '0'
run: |
git config user.name "Sefinek Actions"
git config user.email "[email protected]"
git add .
git commit -am "Update the list of malicious IP addresses"
git push origin main