We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36aa81b commit e619352Copy full SHA for e619352
.github/workflows/release-post-merge.yml
@@ -9,6 +9,7 @@ on:
9
env:
10
GITHUB_USER: "datavisyn-bot"
11
GITHUB_TOKEN: ${{ secrets.DATAVISYN_BOT_REPO_TOKEN }}
12
+ PR_TITLE: ${{ github.event.pull_request.title }}
13
14
jobs:
15
post_release:
@@ -23,7 +24,7 @@ jobs:
23
24
- name: Generate Release Notes
25
id: generate-release-notes
26
run: |
- TAG_NAME="v$(echo "${{ github.event.pull_request.title }}" | awk '{print $2}')"
27
+ TAG_NAME="v$(echo "$PR_TITLE" | awk '{print $2}')"
28
response=$(curl -s -X POST \
29
-H "Accept: application/vnd.github+json" \
30
-H "Authorization: Bearer $GITHUB_TOKEN" \
0 commit comments