From 3efa650de1ed79c8bde828d084656af9f692c6e1 Mon Sep 17 00:00:00 2001 From: ItsIgnacioPortal <46269721+ItsIgnacioPortal@users.noreply.github.com> Date: Mon, 13 Apr 2026 22:36:49 -0300 Subject: [PATCH] fix(cicd): Fixed bad syntax on github actions flows --- .github/workflows/readme-updater.yml | 2 +- .github/workflows/remote-wordlists-updater.yml | 2 +- ...updater_awesome-list-of-secrets-in-environment-variables.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/readme-updater.yml b/.github/workflows/readme-updater.yml index d1169dc20..d03e23347 100644 --- a/.github/workflows/readme-updater.yml +++ b/.github/workflows/readme-updater.yml @@ -9,7 +9,7 @@ on: jobs: update-readme: - if: env.RUN_UPDATERS == '1' + if: ${{ vars.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 560d8e3b1..81e97802f 100644 --- a/.github/workflows/remote-wordlists-updater.yml +++ b/.github/workflows/remote-wordlists-updater.yml @@ -8,7 +8,7 @@ on: jobs: update-files: - if: env.RUN_UPDATERS == '1' + if: ${{ vars.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 fcedf281a..8df529f66 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,7 +6,7 @@ on: jobs: update_awesome-environment-variable-names: - if: env.RUN_UPDATERS == '1' + if: ${{ vars.RUN_UPDATERS }} == '1' runs-on: ubuntu-latest steps: - uses: actions/checkout@v2