Skip to content

Commit 3efa650

Browse files
fix(cicd): Fixed bad syntax on github actions flows
1 parent 22e7d64 commit 3efa650

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/readme-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010

1111
update-readme:
12-
if: env.RUN_UPDATERS == '1'
12+
if: ${{ vars.RUN_UPDATERS }} == '1'
1313
runs-on: ubuntu-latest
1414
permissions:
1515
contents: write

.github/workflows/remote-wordlists-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
update-files:
11-
if: env.RUN_UPDATERS == '1'
11+
if: ${{ vars.RUN_UPDATERS }} == '1'
1212
permissions:
1313
contents: write
1414
runs-on: ubuntu-latest

.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
update_awesome-environment-variable-names:
9-
if: env.RUN_UPDATERS == '1'
9+
if: ${{ vars.RUN_UPDATERS }} == '1'
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)