Skip to content

Commit 40382b3

Browse files
feat(cicd): Disabled actions running on forks by default
Fixes #1315
1 parent f78adb9 commit 40382b3

4 files changed

Lines changed: 4 additions & 0 deletions

.github/workflows/readme-updater.yml

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

1111
update-readme:
12+
if: env.RUN_UPDATERS == '1'
1213
runs-on: ubuntu-latest
1314
permissions:
1415
contents: write

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

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

99
jobs:
1010
update-files:
11+
if: env.RUN_UPDATERS == '1'
1112
permissions:
1213
contents: write
1314
runs-on: ubuntu-latest

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

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

77
jobs:
88
update_awesome-environment-variable-names:
9+
if: env.RUN_UPDATERS == '1'
910
runs-on: ubuntu-latest
1011
steps:
1112
- uses: actions/checkout@v2

.github/workflows/wordlist-updater_fuzzing_etc_files.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
jobs:
1212
updatejob:
13+
if: env.RUN_UPDATERS == '1'
1314
# The type of runner that the job will run on
1415
runs-on: ubuntu-latest
1516
# Steps represent a sequence of tasks that will be executed as part of the job

0 commit comments

Comments
 (0)