24 lines
556 B
YAML
24 lines
556 B
YAML
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
|