2023-12-14 04:10:00 +00:00
|
|
|
name: Sync Repositories Workflow
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '.new-additions'
|
2024-03-19 03:33:12 +00:00
|
|
|
- 'file/keys/dependency/dependency-track.yaml'
|
|
|
|
- 'file/keys/docker/dockerhub-pat.yaml'
|
|
|
|
- 'file/keys/doppler/doppler-audit.yaml'
|
|
|
|
- 'file/keys/doppler/doppler-cli.yaml'
|
|
|
|
- 'file/keys/doppler/doppler-scim.yaml'
|
|
|
|
- 'file/keys/doppler/doppler-service-account.yaml'
|
|
|
|
- 'file/keys/doppler/doppler-service.yaml'
|
|
|
|
- 'file/keys/dropbox/dropbox-access.yaml'
|
|
|
|
- 'file/keys/huggingface/huggingface-user-access.yaml'
|
|
|
|
- 'file/keys/linkedin/linkedin-client.yaml'
|
|
|
|
- 'file/keys/linkedin/linkedin-secret.yaml'
|
|
|
|
- 'file/keys/newrelic/newrelic-api-service.yaml'
|
|
|
|
- 'file/keys/newrelic/newrelic-license-non.yaml'
|
|
|
|
- 'file/keys/newrelic/newrelic-license.yaml'
|
|
|
|
- 'file/keys/odbc/odbc-connection.yaml'
|
|
|
|
- 'file/keys/okta/okta-api.yaml'
|
|
|
|
- 'file/keys/particle/particle-access.yaml'
|
|
|
|
- 'file/keys/react/reactapp-password.yaml'
|
|
|
|
- 'file/keys/react/reactapp-username.yaml'
|
|
|
|
- 'file/keys/salesforce/salesforce-access.yaml'
|
|
|
|
- 'file/keys/thingsboard/thingsboard-access.yaml'
|
|
|
|
- 'file/keys/truenas/truenas-api.yaml'
|
|
|
|
- 'file/keys/twitter/twitter-client.yaml'
|
|
|
|
- 'file/keys/twitter/twitter-secret.yaml'
|
|
|
|
- 'file/keys/wireguard/wireguard-preshared.yaml'
|
|
|
|
- 'file/keys/wireguard/wireguard-private.yaml'
|
2024-03-12 05:34:20 +00:00
|
|
|
- 'http/cves/2023/CVE-2023-49785.yaml'
|
2024-03-19 05:01:49 +00:00
|
|
|
- 'http/cves/2023/CVE-2023-5830.yaml'
|
2024-03-19 04:02:36 +00:00
|
|
|
- 'http/cves/2023/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'
|