diff --git a/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml b/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml index b99fc967..c5a0f98f 100644 --- a/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml +++ b/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml @@ -6,9 +6,8 @@ on: push: paths: - 'test.txt' - jobs: - update_combined_words: + update_awesome-environment-variable-names: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -18,9 +17,6 @@ jobs: - name: Switching from HTTPS to SSH run: git remote set-url origin git@github.com:danielmiessler/SecLists.git - - name: Check for changes - run: git status - - name: Stage changed files run: git add Discovery/Variables/awesome-environment-variable-names.txt @@ -31,7 +27,9 @@ jobs: - name: Check git status and save to output id: myoutputs - run: echo "::set-output name=gitstatus::$(git status --porcelain)" + run: | + git status + echo "::set-output name=gitstatus::$(git status --porcelain)" - name: Commit changed files if: steps.myoutputs.outputs.gitstatus != ''