From 15ea90ffda5d45288228845b707bb53b3ab2740f Mon Sep 17 00:00:00 2001 From: Tristan Date: Fri, 27 Sep 2024 10:55:18 -0400 Subject: [PATCH] IDP-2284 Use github.token to create tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I thought this was supplied by default but it is not 🙀 --- .github/workflows/terraform-create-git-tag.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/terraform-create-git-tag.yml b/.github/workflows/terraform-create-git-tag.yml index eb8fe9c..9bd2d88 100644 --- a/.github/workflows/terraform-create-git-tag.yml +++ b/.github/workflows/terraform-create-git-tag.yml @@ -23,6 +23,7 @@ jobs: - name: Bump version and push tag uses: anothrNick/github-tag-action@v1 # Don't use @master or @v1 unless you're happy to test the latest version env: + GITHUB_TOKEN: ${{ github.token }} DEFAULT_BUMP: patch INITIAL_VERSION: 1.0.0 WITH_V: false