store exploit-db-pull-and-sync.yaml action file
This commit is contained in:
commit
e3c6b62579
1 changed files with 24 additions and 0 deletions
24
.forgejo/workflows/exploit-db-pull-and-sync.yaml
Normal file
24
.forgejo/workflows/exploit-db-pull-and-sync.yaml
Normal 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
|
Loading…
Add table
Reference in a new issue