From 87036bf799b8fbcec8b123fc02a9528b91ffb7a9 Mon Sep 17 00:00:00 2001 From: PinkDev1 <5990@protonmail.com> Date: Sat, 1 Oct 2022 03:48:14 -0300 Subject: [PATCH] Improved the job name for the "Wordlist Updater - Awesome list of secrets in environment variables" github action --- ...wesome-list-of-secrets-in-environment-variables.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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 != ''