Improved the job name for the "Wordlist Updater - Awesome list of secrets in environment variables" github action

This commit is contained in:
PinkDev1 2022-10-01 03:48:14 -03:00
parent fcaa456468
commit 87036bf799

View file

@ -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 != ''