From d13036403407c072c0e8e606fece629674edb604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michalina=20Ciencia=C5=82a?= Date: Tue, 23 May 2023 12:11:33 +0200 Subject: [PATCH 1/3] Update commiter's e-mail When using private email, Git throws ``` error: GH007: Your push would publish a private email address. ``` during `git push`. We need to make commits using a noreply e-mail (or change GH's 'Keep my email address private' setting). --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index db398ad..0d6ad65 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,7 @@ jobs: if: github.event_name != 'pull_request' run: | git config user.name Valkyrie - git config user.email valkyrie@thesis.co + git config user.email 8324465+thesis-valkyrie@noreply.github.com # On `main` merge or manual workflow dispatch on `main` publish a # pre-release package. Automatically bump version based on the current From dff26c14ab89b4918e6740cfbce989b0b746621e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michalina=20Ciencia=C5=82a?= Date: Tue, 13 Jun 2023 10:32:34 +0200 Subject: [PATCH 2/3] Fix commiter's email The correct noreply address for Valkyrie contains the `users.` part. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0d6ad65..f3fc974 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,7 @@ jobs: if: github.event_name != 'pull_request' run: | git config user.name Valkyrie - git config user.email 8324465+thesis-valkyrie@noreply.github.com + git config user.email 8324465+thesis-valkyrie@users.noreply.github.com # On `main` merge or manual workflow dispatch on `main` publish a # pre-release package. Automatically bump version based on the current From 0436477d8d84713263211ec958e26c6be696742c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michalina=20Ciencia=C5=82a?= Date: Tue, 20 Jun 2023 11:26:54 +0200 Subject: [PATCH 3/3] Use correct id in committer's e-mail --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f3fc974..a9fda7b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,7 @@ jobs: if: github.event_name != 'pull_request' run: | git config user.name Valkyrie - git config user.email 8324465+thesis-valkyrie@users.noreply.github.com + git config user.email 38324465+thesis-valkyrie@users.noreply.github.com # On `main` merge or manual workflow dispatch on `main` publish a # pre-release package. Automatically bump version based on the current