-
-
Notifications
You must be signed in to change notification settings - Fork 83
45 lines (36 loc) · 1.26 KB
/
dnstwist.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
42
43
44
45
name: DNSTWIST Domains Data Processing
on:
schedule:
- cron: '0 */6 * * *' # Runs at minute 0 every 6 hours
workflow_dispatch:
jobs:
process-data:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dnstwist
run: |
python -m pip install --upgrade pip
pip install dnstwist[full]
- name: Run the script
run: python Lists/DNSTWIST/get_dnstwist.py Lists/DNSTWIST/domains_list.txt
- name: List files in the root directory
run: ls -la
- name: List files in the Lists/DNSTWIST directory
run: ls -la Lists/DNSTWIST
- name: Move output files to correct directory (if necessary)
run: |
mv *_dnstwist_list.csv Lists/DNSTWIST/ || echo "File not found in root."
- name: Commit and Push Changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add Lists/DNSTWIST/*_dnstwist_list.csv
git commit -m "Update DNSTWIST list files" --allow-empty
git pull --rebase
git push