Skip to content

Commit e619352

Browse files
committed
fix lint
1 parent 36aa81b commit e619352

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release-post-merge.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
env:
1010
GITHUB_USER: "datavisyn-bot"
1111
GITHUB_TOKEN: ${{ secrets.DATAVISYN_BOT_REPO_TOKEN }}
12+
PR_TITLE: ${{ github.event.pull_request.title }}
1213

1314
jobs:
1415
post_release:
@@ -23,7 +24,7 @@ jobs:
2324
- name: Generate Release Notes
2425
id: generate-release-notes
2526
run: |
26-
TAG_NAME="v$(echo "${{ github.event.pull_request.title }}" | awk '{print $2}')"
27+
TAG_NAME="v$(echo "$PR_TITLE" | awk '{print $2}')"
2728
response=$(curl -s -X POST \
2829
-H "Accept: application/vnd.github+json" \
2930
-H "Authorization: Bearer $GITHUB_TOKEN" \

0 commit comments

Comments
 (0)