You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/auto-tag.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -165,13 +165,13 @@ jobs:
165
165
await github.rest.repos.createRelease({
166
166
owner: context.repo.owner,
167
167
repo: context.repo.repo,
168
-
tag_name: '${{ steps.get-version.outputs.TAG }}',
168
+
tag_name: '${{ steps.get-tag.outputs.TAG }}',
169
169
})
170
170
171
171
// Add a reminder for needed rebase to PR in open state
172
172
const BOT_NAME = "TAG Bot"
173
173
const COMMENT_HEAD = "**" + BOT_NAME + "**\n\n"
174
-
const COMMENT_BODY = "New tag: ${{ steps.get-version.outputs.TAG }}\nDISTRIBUTION: ${{ steps.get-version.outputs.DISTRIBUTION }}\nSuggest: synchronizing this PR through rebase #" + context.issue.number
174
+
const COMMENT_BODY = "New tag: ${{ steps.get-tag.outputs.TAG }}\nDISTRIBUTION: ${{ steps.get-version.outputs.DISTRIBUTION }}\nSuggest: synchronizing this PR through rebase #" + context.issue.number
175
175
for await (const prsResp of github.paginate.iterator(
0 commit comments