commit e3c6b62579aa54053344a52d7c545b3c8fe56b71 Author: Brendan McDevitt Date: Fri Mar 28 13:40:21 2025 -0500 store exploit-db-pull-and-sync.yaml action file diff --git a/.forgejo/workflows/exploit-db-pull-and-sync.yaml b/.forgejo/workflows/exploit-db-pull-and-sync.yaml new file mode 100644 index 000000000..8e9f3b7b5 --- /dev/null +++ b/.forgejo/workflows/exploit-db-pull-and-sync.yaml @@ -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