-
Notifications
You must be signed in to change notification settings - Fork 237
47 lines (41 loc) · 1.08 KB
/
main.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
46
47
name: Daily Update Nuclei POCs
on:
push:
branches:
- main
schedule:
- cron: '0 12 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: 1 Clone Repos
run: python 1-clone_repos.py
- name: 2 Download Nuclei
run: |
pip install requests
python 2-download_nuclei.py
unzip nuclei.zip nuclei
rm -rf nuclei.zip
- name: 3 Check POC
run: python 3-check_poc.py
- name: 4 Move Duplicated
run: python 4-remove_duplicated.py
- name: 5 Get POC Name
run: python 5-get_pocname.py
- name: 6 Delete Nuclei
run: rm -rf nuclei
- name: Commit and Push changes
run: |
echo $(date +'%Y%m%d') > date.txt
git add .
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -am "$(date +'%Y%m%d')"
git push -v --progress