stop hardcoding bot info in some pipelines

This commit is contained in:
Jonathan Wren 2022-06-11 19:14:59 -07:00
parent 9639c5386f
commit d23c813849

View file

@ -141,8 +141,8 @@ jobs:
- name: Commit - name: Commit
if: env.SOMETHING_CHANGED == 'true' if: env.SOMETHING_CHANGED == 'true'
run: | run: |
git config user.email "jrnl.bot@gmail.com" git config --global user.name "${{ secrets.JRNL_BOT_NAME }}"
git config user.name "Jrnl Bot" git config --global user.email "${{ secrets.JRNL_BOT_EMAIL }}"
git add "$FILENAME" git add "$FILENAME"
git commit -m "Update changelog [ci skip]" git commit -m "Update changelog [ci skip]"
git push origin $BRANCH git push origin $BRANCH