From 604a1e21b41dfa680fa2adca67672e5aafb04070 Mon Sep 17 00:00:00 2001 From: RoyalOughtness <129108030+RoyalOughtness@users.noreply.github.com> Date: Thu, 2 Oct 2025 19:26:12 -0700 Subject: [PATCH] fix: set git identity for the action --- .github/workflows/upstream-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/upstream-sync.yml b/.github/workflows/upstream-sync.yml index 69a9e5ca5d..27b1b7123b 100644 --- a/.github/workflows/upstream-sync.yml +++ b/.github/workflows/upstream-sync.yml @@ -38,6 +38,8 @@ jobs: env: FEDORA_VERSION: 42 run: | + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config user.name "github-actions[bot]" git remote add 'upstream' 'https://github.com/fedora-selinux/selinux-policy.git' git fetch --tags 'upstream' latest_tag=$(git tag -l "v${FEDORA_VERSION}.*" --sort='-creatordate' | head -n1)