From 9de1419b8a7454d9fd9af80a3f8eb1a181eb72b0 Mon Sep 17 00:00:00 2001 From: "Ignacio J. Perez Portal" <5990@protonmail.com> Date: Wed, 24 Apr 2024 22:58:30 -0300 Subject: [PATCH] fix(CICD): Added write permissions to the trickest-wordlist auto-updater workflow Prevents the error 'remote: Permission to USERNAME/SecLists.git denied to github-actions[bot].' when the action is run automatically from a seclists fork that has the default github-actions security settings --- .github/workflows/wordlist-updater_trickest-wordlists.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/wordlist-updater_trickest-wordlists.yml b/.github/workflows/wordlist-updater_trickest-wordlists.yml index 725bbdd9..bc564a54 100644 --- a/.github/workflows/wordlist-updater_trickest-wordlists.yml +++ b/.github/workflows/wordlist-updater_trickest-wordlists.yml @@ -8,6 +8,8 @@ on: jobs: update-files: + permissions: + contents: write runs-on: ubuntu-latest steps: - uses: actions/checkout@v3