Skip to content

Daily Update Nuclei POCs #351

Daily Update Nuclei POCs

Daily Update Nuclei POCs #351

Workflow file for this run

name: Daily Update Nuclei POCs
on:
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 Delete Duplicated
run: python 2-delete_duplicated.py
- name: 3 Move File
run: python 3-move_file.py
- name: Commit and Push changes
run: |
echo $(date +'%Y%m%d') > date.txt
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -am "$(date +'%Y%m%d')"
git push -v --progress