Fetch IPs #154
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fetch IPs | |
on: | |
schedule: | |
- 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 ci --omit=dev | |
- name: Fetch IPs from API and update files | |
run: node worker.js | |
env: | |
SEFIN_API_KEY: ${{ secrets.SEFIN_API_KEY }} | |
- name: Add files to staging | |
run: git add . | |
- name: Commit and push changes | |
run: | | |
git config user.name "Sefinek Actions" | |
git config user.email "sefinek.actions@gmail.com" | |
if [ -n "$(git status -s)" ]; then | |
MODIFIED_FILES=$(git diff --name-only HEAD) | |
FILE_COUNT=$(echo "$MODIFIED_FILES" | wc -l) | |
if [ "$FILE_COUNT" -gt 0 ]; then | |
git commit -am "Update the list of malicious IP addresses [$FILE_COUNT files]" -m "$MODIFIED_FILES" | |
git push origin main | |
else | |
echo "Canceled. No changes were made." | |
fi | |
else | |
echo "Canceled. No changes to commit." | |
fi |