mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-08-11 11:48:10 +00:00
(Attempt #1): Fix "Wordlist Updater - Awesome list of secrets in environment variables"
This commit is contained in:
+5
-1
@@ -21,10 +21,14 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
git config --local user.email "example@github.com"
|
git config --local user.email "example@github.com"
|
||||||
git config --local user.name "GitHub Action"
|
git config --local user.name "GitHub Action"
|
||||||
|
- name: Set environment variables
|
||||||
|
run: echo "::set-output name=gitstatus::$(git status --porcelain)"
|
||||||
- name: Commit changed files
|
- name: Commit changed files
|
||||||
|
if: steps.version.outputs.gitstatus != ""
|
||||||
run: git commit -m "[Github Action] Updated awesome-environment-variable-names.txt"
|
run: git commit -m "[Github Action] Updated awesome-environment-variable-names.txt"
|
||||||
- name: Push changes # push the output folder to your repo
|
- name: Push changes # push the output folder to your repo
|
||||||
uses: ad-m/github-push-action@master
|
if: steps.version.outputs.gitstatus != ""
|
||||||
|
uses: ad-m/github-push-action@master
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
force: true
|
force: true
|
||||||
|
|||||||
Reference in New Issue
Block a user