From f1e7c8fa51efde4ff89e794d47485d2e6de7f514 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Mon, 20 Jun 2022 12:30:19 +0530 Subject: [PATCH] chore: set commit user as github bot Signed-off-by: Pranav C --- .github/workflows/release-executables.yml | 4 ++-- .github/workflows/release-pr.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-executables.yml b/.github/workflows/release-executables.yml index 2d5fdd29e3..4ef2a4dd25 100644 --- a/.github/workflows/release-executables.yml +++ b/.github/workflows/release-executables.yml @@ -66,8 +66,8 @@ jobs: run: | npm i -E nocodb-daily@$TAG - git config --global user.name "Pranav C" - git config --global user.email "pranavxc@gmail.com" + git config user.name 'github-actions[bot]' + git config user.email 'github-actions[bot]@users.noreply.github.com' git commit package.json -m "Update to $TAG" git tag $TAG diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index 5276ff35f6..4a33b6e565 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -114,7 +114,7 @@ jobs: - uses: peter-evans/commit-comment@v2 with: body: | - The PR changes have been deployed as executables. Pleae visit following link to download executables : https://github.com/nocodb/nocodb-timely/releases/tag/${{ needs.set-tag.outputs.target_tag }} + The PR changes have been deployed as executables. Pleae visit following link to download executables : https://github.com/nocodb/nocodb-timely/releases/tag/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }} # if-merged: # if: github.event.pull_request.merged == true