mirror of
https://github.com/danielmiessler/SecLists
synced 2026-05-07 03:53:44 +02:00
fix(cicd): Fixed bad syntax on github actions flows
This commit is contained in:
parent
22e7d64e16
commit
3efa650de1
3 changed files with 3 additions and 3 deletions
2
.github/workflows/readme-updater.yml
vendored
2
.github/workflows/readme-updater.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue