mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-08-16 16:06:35 +00:00
fix(cicd): Fixed bad syntax on github actions flows (attempt #2)
This commit is contained in:
@@ -9,7 +9,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
update-readme:
|
update-readme:
|
||||||
if: ${{ vars.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: ${{ vars.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: ${{ vars.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
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
updatejob:
|
updatejob:
|
||||||
if: ${{ vars.RUN_UPDATERS }} == '1'
|
if: vars.RUN_UPDATERS == 1
|
||||||
# The type of runner that the job will run on
|
# The type of runner that the job will run on
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
|
|||||||
Reference in New Issue
Block a user