-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 1.09 KB
/
schedule.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Scheduled IP Processing
on:
schedule:
- cron: '0 * * * *'
workflow_dispatch:
jobs:
process_ips:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
pip install requests
- name: Run the IP processing script
run: |
python subnet_compressor.py
- name: Set commit message
id: commit_message
run: |
echo "COMMIT_MESSAGE=️️⚡️ SYNC ⚡️ $(date +'%Y/%m/%d %H:%M')" >> $GITHUB_ENV
- name: Commit and push changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "essinghigh"
git add abuseipdb-s100* # Add files matching the pattern
git commit -m "${{ env.COMMIT_MESSAGE }}" || echo "No changes to commit"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}