Configure Git user for upstream sync in workflow

This commit is contained in:
Jacob Marks 2026-05-12 13:54:39 -04:00 committed by GitHub
parent bd05814e30
commit 4c6054a16e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,10 @@ jobs:
- name: Sync upstream - name: Sync upstream
run: | run: |
git config user.email "github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
git remote add upstream https://github.com/gchq/CyberChef.git git remote add upstream https://github.com/gchq/CyberChef.git
git fetch upstream git fetch upstream
git merge upstream/master git merge upstream/master
git push origin master git push origin master