nuclei-templates/.github/workflows/templates-sync.yml

34 lines
1.5 KiB
YAML
Raw Normal View History

2023-12-14 04:10:00 +00:00
name: Sync Repositories Workflow
on:
push:
paths:
- '.new-additions'
2024-03-12 05:34:20 +00:00
- 'http/cves/2023/CVE-2023-49785.yaml'
2024-03-15 14:47:45 +00:00
- 'http/cves/2024/CVE-2023-5914.yaml'
2024-03-14 18:07:30 +00:00
- 'http/cves/2024/CVE-2024-1698.yaml'
2024-03-15 08:52:20 +00:00
- 'http/exposed-panels/bynder-panel.yaml'
2024-03-18 06:10:39 +00:00
- 'http/exposed-panels/cisco/cisco-expressway-panel.yaml'
2024-03-13 11:35:51 +00:00
- 'http/exposed-panels/emqx-panel.yaml'
2024-03-18 05:45:33 +00:00
- 'http/exposed-panels/fortinet/forticlientems-panel.yaml'
2024-03-15 05:13:51 +00:00
- 'http/exposed-panels/fortinet/fortiwlm-panel.yaml'
2024-03-13 19:13:09 +00:00
- 'http/exposed-panels/neocase-hrportal-panel.yaml'
2024-03-13 11:35:10 +00:00
- 'http/exposed-panels/osnexus-panel.yaml'
- 'http/exposed-panels/posteio-admin-panel.yaml'
2024-03-14 05:16:26 +00:00
- 'http/exposed-panels/skeepers-panel.yaml'
2024-03-14 04:28:40 +00:00
- 'http/misconfiguration/installer/posteio-installer.yaml'
2024-03-16 10:23:19 +00:00
- 'http/osint/phishing/kakao-login-phish.yaml'
- 'http/osint/phishing/naver-login-phish.yaml'
2024-03-16 16:15:41 +00:00
- 'http/technologies/microsoft/aspnet-version-detect.yaml'
- 'http/technologies/microsoft/aspnetmvc-version-disclosure.yaml'
2024-03-13 11:36:57 +00:00
- 'http/vulnerabilities/landray/landray-eis-ws-infoleak.yaml'
2024-03-16 16:23:42 +00:00
- 'network/detection/wing-ftp-detect.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'