From dafa7175a646d652577cf394299a2ce8fd184f1c Mon Sep 17 00:00:00 2001 From: Casey Marshall Date: Fri, 22 Dec 2023 23:47:03 -0600 Subject: [PATCH] chore: set up git identity for committing during release --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4e31145..c3bb1ff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,10 @@ jobs: - name: Install release tools run: cargo install cargo-release convco + - name: Set up git committer + run: |- + git config --global user.email "ddcp-releaser@users.noreply.github.com" + git config --global user.name "DDCP Release Github Action" - name: Release run: cargo release --execute --no-confirm $(convco version --bump) env: