store exploit-db-pull-and-sync.yaml action file

This commit is contained in:
Brendan McDevitt 2025-03-28 13:40:21 -05:00
commit e3c6b62579

View file

@ -0,0 +1,24 @@
name: ExploitDB Mirror
on:
schedule:
# Run daily at midnight
- cron: '0 0 * * *'
workflow_dispatch:
# Allow manual trigger
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout current repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Mirror ExploitDB Repository
run: |
git remote add exploitdb https://github.com/offensive-security/exploitdb.git
git fetch exploitdb main
git merge exploitdb/main
git push origin main