mirror of
https://github.com/danielmiessler/SecLists
synced 2026-05-08 04:28:07 +02:00
fix(cicd): Disabled updaters running on tags
Fixes #1240 See: https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#push
This commit is contained in:
parent
50818f3bb3
commit
20b9d28baf
6 changed files with 12 additions and 0 deletions
2
.github/workflows/readme-updater.yml
vendored
2
.github/workflows/readme-updater.yml
vendored
|
|
@ -4,6 +4,8 @@ name: Readme updater - Updates readme with latest stats
|
|||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ name: Wordlist Updater - API Endpoints Res
|
|||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'Discovery/Web-Content/api/api-seen-in-wild.txt'
|
||||
- 'Discovery/Web-Content/api/actions.txt'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ name: Wordlist Updater - Combined directories
|
|||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'Discovery/Web-Content/apache.txt'
|
||||
- 'Discovery/Web-Content/combined_words.txt'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ name: Wordlist Updater - Combined words
|
|||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'Discovery/Web-Content/common.txt'
|
||||
- 'Discovery/Web-Content/raft-small-words.txt'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ name: Wordlist Updater - default-passwords
|
|||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'Passwords/Default-Credentials/default-passwords.csv'
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@
|
|||
name: Wordlist Validator - Runs a validator script to check for dangerous pushes
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- "**.txt"
|
||||
pull_request:
|
||||
|
|
|
|||
Loading…
Reference in a new issue