mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-07-16 22:32:40 +00:00
fix(cicd): Fixed bad syntax on github actions flows
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user