From 4c6054a16ec1c3c83b1cdef27cc784dd73370dc0 Mon Sep 17 00:00:00 2001 From: Jacob Marks <100745682+J8k3@users.noreply.github.com> Date: Tue, 12 May 2026 13:54:39 -0400 Subject: [PATCH] Configure Git user for upstream sync in workflow --- .github/workflows/sync_upstream.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/sync_upstream.yml b/.github/workflows/sync_upstream.yml index 50fc81b5..e24a4064 100644 --- a/.github/workflows/sync_upstream.yml +++ b/.github/workflows/sync_upstream.yml @@ -15,7 +15,10 @@ jobs: - name: Sync upstream 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 fetch upstream git merge upstream/master git push origin master +