From 47d5c4b5213ecb2c0151feeb3b5acc7400ee56ee Mon Sep 17 00:00:00 2001 From: Aaron Dalton Date: Thu, 18 Jan 2024 21:23:28 -0800 Subject: [PATCH] Add identity --- .github/workflows/fork-sync.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/fork-sync.yml b/.github/workflows/fork-sync.yml index 817bb43f..f7d647c0 100644 --- a/.github/workflows/fork-sync.yml +++ b/.github/workflows/fork-sync.yml @@ -35,9 +35,14 @@ jobs: run: | git checkout upstream git merge upstream/main upstream + - name: Set Identity + run: | + git config user.name "Github Action" + git config user.email "bot@github-actions" - name: Create Tags if: ${{inputs.tags || steps.fetch-upstream-tags.outputs.NEW_TAGS}} run: | + for TAG in ${NEW_TAGS}; do git checkout -b release/${TAG} ${TAG} git rev-list --no-merges --reverse origin/feature/add_auth ^upstream | git cherry-pick --stdin