From ec97b27eae5f14304de6058a0fe726cc331e76f1 Mon Sep 17 00:00:00 2001 From: Dave-Barcelo Date: Mon, 8 Jan 2024 19:41:59 -0500 Subject: [PATCH] Experimenting with autotagging... --- .github/workflows/release-auto.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-auto.yml b/.github/workflows/release-auto.yml index 92c838eb..c63f3d42 100644 --- a/.github/workflows/release-auto.yml +++ b/.github/workflows/release-auto.yml @@ -63,11 +63,13 @@ jobs: echo "The last tag was: $out" echo "The label is: ${{ needs.get_pull_request.outputs.pull_request_labels }}" + - name: Set github user + run: | + git config --global user.name 'github-actions[bot]' + git config --global user.email 'github-actions[bot]@users.noreply.github.com' + - name: tag it run: | git tag -a "blah" -m "Release blah" git push origin - #- name: echo new tag - # run: | - # echo "The next tag version will be: ${{ steps.taggerDryRun.outputs.newtag }}"