(Attempt #6): Fix "Wordlist Updater - Awesome list of secrets in environment variables"

This commit is contained in:
PinkDev1 2022-10-01 03:40:10 -03:00
parent 3b17a2ffe0
commit f9a98ea32a

View File

@ -34,11 +34,11 @@ jobs:
run: echo "::set-output name=gitstatus::$(git status --porcelain)"
- name: Commit changed files
if: steps.myoutputs.outputs.gitstatus != ""
if: steps.myoutputs.outputs.gitstatus != ''
run: git commit -m "[Github Action] Updated awesome-environment-variable-names.txt"
- name: Push changes # push the output folder to your repo
if: steps.myoutputs.outputs.gitstatus != ""
if: steps.myoutputs.outputs.gitstatus != ''
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}