From 71a5538412c216be2142181202f57f2996416888 Mon Sep 17 00:00:00 2001 From: Kumar Abhishek Date: Thu, 21 Nov 2024 14:12:23 -0800 Subject: [PATCH] Configure git for the copy workflow --- .github/workflows/copy-dirs.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/copy-dirs.yml b/.github/workflows/copy-dirs.yml index 7716879..64e3be6 100644 --- a/.github/workflows/copy-dirs.yml +++ b/.github/workflows/copy-dirs.yml @@ -25,6 +25,11 @@ jobs: git fetch origin +refs/heads/v1-uk-docs-release:refs/remotes/origin/v1-uk-docs-release git checkout v1-uk-docs-release || git checkout --orphan v1-uk-docs-release + - name: Configure Git + run: | + git config user.name "kabhi-stripe" + git config user.email "kabhi@stripe.com" + - name: Copy from Temp Directory to v1-uk-docs-release run: | cp -r temp-v1-uk-docs/* . @@ -54,6 +59,11 @@ jobs: git fetch origin +refs/heads/v1-eu-docs-release:refs/remotes/origin/v1-eu-docs-release git checkout v1-eu-docs-release || git checkout --orphan v1-eu-docs-release + - name: Configure Git + run: | + git config user.name "kabhi-stripe" + git config user.email "kabhi@stripe.com" + - name: Copy from Temp Directory to v1-eu-docs-release run: | cp -r temp-v1-eu-docs/* .