diff --git a/.github/actions/create-git-tag/create-git-tag.js b/.github/actions/create-git-tag/create-git-tag.js index 05812f5b6a..870355fadb 100644 --- a/.github/actions/create-git-tag/create-git-tag.js +++ b/.github/actions/create-git-tag/create-git-tag.js @@ -18,7 +18,7 @@ module.exports = async ({ github, context, core, tagName }) => { const tagSHA = context.payload?.after ?? context.sha; - core.notice(`Creating a tag with title: ${tagName}, and SHA: ${tagSHA}`); + core.notice(`Creating tag with title: ${tagName}, and SHA: ${tagSHA}`); const createdTag = await github.rest.git.createTag({ owner: context.repo.owner,