From 40382b33b84a5f8b130f495ad0f289c36b0ed0ee Mon Sep 17 00:00:00 2001 From: ItsIgnacioPortal <46269721+ItsIgnacioPortal@users.noreply.github.com> Date: Fri, 10 Apr 2026 20:13:09 -0300 Subject: [PATCH] feat(cicd): Disabled actions running on forks by default Fixes #1315 --- .github/workflows/readme-updater.yml | 1 + .github/workflows/remote-wordlists-updater.yml | 1 + ...-updater_awesome-list-of-secrets-in-environment-variables.yml | 1 + .github/workflows/wordlist-updater_fuzzing_etc_files.yml | 1 + 4 files changed, 4 insertions(+) diff --git a/.github/workflows/readme-updater.yml b/.github/workflows/readme-updater.yml index 205df88d4..d1169dc20 100644 --- a/.github/workflows/readme-updater.yml +++ b/.github/workflows/readme-updater.yml @@ -9,6 +9,7 @@ on: jobs: update-readme: + if: env.RUN_UPDATERS == '1' runs-on: ubuntu-latest permissions: contents: write diff --git a/.github/workflows/remote-wordlists-updater.yml b/.github/workflows/remote-wordlists-updater.yml index 92f621a27..560d8e3b1 100644 --- a/.github/workflows/remote-wordlists-updater.yml +++ b/.github/workflows/remote-wordlists-updater.yml @@ -8,6 +8,7 @@ on: jobs: update-files: + if: env.RUN_UPDATERS == '1' permissions: contents: write runs-on: ubuntu-latest diff --git a/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml b/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml index 778c7ea2d..fcedf281a 100644 --- a/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml +++ b/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml @@ -6,6 +6,7 @@ on: jobs: update_awesome-environment-variable-names: + if: env.RUN_UPDATERS == '1' runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/wordlist-updater_fuzzing_etc_files.yml b/.github/workflows/wordlist-updater_fuzzing_etc_files.yml index 969d3dd97..b1edd0bd4 100644 --- a/.github/workflows/wordlist-updater_fuzzing_etc_files.yml +++ b/.github/workflows/wordlist-updater_fuzzing_etc_files.yml @@ -10,6 +10,7 @@ on: jobs: updatejob: + if: env.RUN_UPDATERS == '1' # The type of runner that the job will run on runs-on: ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job