mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-08-12 16:57:40 +00:00
fix(cicd): Fixed bad syntax on github actions flows
This commit is contained in:
@@ -9,7 +9,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
update-readme:
|
update-readme:
|
||||||
if: env.RUN_UPDATERS == '1'
|
if: ${{ vars.RUN_UPDATERS }} == '1'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-files:
|
update-files:
|
||||||
if: env.RUN_UPDATERS == '1'
|
if: ${{ vars.RUN_UPDATERS }} == '1'
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update_awesome-environment-variable-names:
|
update_awesome-environment-variable-names:
|
||||||
if: env.RUN_UPDATERS == '1'
|
if: ${{ vars.RUN_UPDATERS }} == '1'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|||||||
Reference in New Issue
Block a user