2023-12-14 04:10:00 +00:00
|
|
|
name: Sync Repositories Workflow
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '.new-additions'
|
2024-07-30 07:41:30 +00:00
|
|
|
- 'http/cves/2022/CVE-2022-27043.yaml'
|
2024-08-01 09:54:45 +00:00
|
|
|
- 'http/cves/2023/CVE-2023-43323.yaml'
|
2024-07-29 03:16:08 +00:00
|
|
|
- 'http/cves/2023/CVE-2023-44393.yaml'
|
2024-08-01 07:39:46 +00:00
|
|
|
- 'http/cves/2023/CVE-2023-5222.yaml'
|
2024-07-30 07:44:06 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-39903.yaml'
|
2024-07-31 09:42:01 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-39907.yaml'
|
2024-07-29 03:27:49 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-6205.yaml'
|
2024-07-30 07:34:28 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-6366.yaml'
|
2024-07-31 09:42:01 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-6396.yaml'
|
2024-07-30 07:24:36 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-6922.yaml'
|
2024-08-01 05:36:40 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-7120.yaml'
|
2024-07-30 07:27:38 +00:00
|
|
|
- 'http/cves/2024/CVE-2024-7188.yaml'
|
2024-07-29 10:03:13 +00:00
|
|
|
- 'http/misconfiguration/deployment-interface-exposed.yaml'
|
2024-07-30 07:24:36 +00:00
|
|
|
- 'http/misconfiguration/installer/quickcms-installer.yaml'
|
2024-07-30 17:13:46 +00:00
|
|
|
- 'http/misconfiguration/manage-cabinet-register.yaml'
|
2024-07-26 13:03:06 +00:00
|
|
|
- 'http/osint/user-enumeration/substack.yaml'
|
2024-07-29 09:50:34 +00:00
|
|
|
- 'http/vulnerabilities/esafenet/esafenet-netsecconfigajax-sqli.yaml'
|
|
|
|
- 'http/vulnerabilities/esafenet/esafenet-noticeajax-sqli.yaml'
|
2024-07-29 09:48:53 +00:00
|
|
|
- 'http/vulnerabilities/landray/landray-oa-replaceextend-rce.yaml'
|
2023-12-14 04:10:00 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
triggerRemoteWorkflow:
|
2024-03-02 09:35:40 +00:00
|
|
|
if: github.repository == 'projectdiscovery/nuclei-templates'
|
2024-03-04 09:34:20 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-12-14 04:10:00 +00:00
|
|
|
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'
|