From 0682bcf23693da9eccef38bb40abe11d2f9b9854 Mon Sep 17 00:00:00 2001 From: Mitsuhiro Nakamura Date: Thu, 23 Dec 2021 10:10:27 +0900 Subject: [PATCH] chore: set author name and email in github action --- .github/workflows/merge-upstream-changes.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/merge-upstream-changes.yml b/.github/workflows/merge-upstream-changes.yml index e866fdba..5975b3ea 100644 --- a/.github/workflows/merge-upstream-changes.yml +++ b/.github/workflows/merge-upstream-changes.yml @@ -16,6 +16,8 @@ jobs: ref: ${{ github.head_ref }} - uses: fish-actions/install-fish@v1.1.0 - run: | + git config user.name mnacamura + git config user.email mnacamura@users.noreply.github.com git remote add upstream https://github.com/PatrickF1/fzf.fish.git git fetch --unshallow upstream main git merge --no-ff upstream/main