2023-12-14 04:10:00 +00:00
|
|
|
name: Sync Repositories Workflow
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '.new-additions'
|
2024-02-21 03:14:42 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-1208.yaml'
|
|
|
|
- 'http/cves/2024/CVE-2024-1209.yaml'
|
2024-02-21 03:15:50 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-1210.yaml'
|
2024-02-21 12:54:41 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-25600.yaml'
|
2024-02-21 12:51:24 +00:00
|
|
|
- 'http/exposed-panels/fortinet/fortiauthenticator-detect.yaml'
|
2024-02-21 07:34:16 +00:00
|
|
|
- 'http/misconfiguration/installer/connectwise-setup.yaml'
|
2024-02-21 12:51:24 +00:00
|
|
|
- 'http/misconfiguration/screenconnect-authentication-bypass.yaml'
|
2024-02-21 12:56:10 +00:00
|
|
|
- 'http/vulnerabilities/dahua/dahua-bitmap-fileupload.yaml'
|
2023-12-14 04:10:00 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
triggerRemoteWorkflow:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Trigger Remote Workflow with curl
|
|
|
|
run: |
|
|
|
|
curl -i -s -k -X 'POST' -H 'Host: api.github.com' -H "Authorization: token ${{ secrets.GTOKEN }}" --data-binary $'{\"ref\":\"main\"}' 'https://api.github.com/repos/projectdiscovery/early-templates/actions/workflows/reposync.yml/dispatches'
|