mirror of
https://github.com/danielmiessler/SecLists
synced 2026-01-01 13:44:09 +01:00
Improved the job name for the "Wordlist Updater - Awesome list of secrets in environment variables" github action
This commit is contained in:
parent
fcaa456468
commit
87036bf799
1 changed files with 4 additions and 6 deletions
|
|
@ -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 != ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue