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 189e4a9 commit 07d2dceCopy full SHA for 07d2dce
.github/workflows/release-comment-issues.yml
@@ -17,7 +17,10 @@ jobs:
17
steps:
18
- name: Get version
19
id: get_version
20
- run: echo "version=${{ github.event.inputs.version || github.event.release.tag_name }}" >> $GITHUB_OUTPUT
+ env:
21
+ INPUTS_VERSION: ${{ github.event.inputs.version }}
22
+ RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
23
+ run: echo "version=${$INPUTS_VERSION:-$RELEASE_TAG_NAME}" >> "$GITHUB_OUTPUT"
24
25
- name: Comment on linked issues that are mentioned in release
26
if: |
@@ -28,4 +31,4 @@ jobs:
28
31
uses: getsentry/release-comment-issues-gh-action@v1
29
32
with:
30
33
github_token: ${{ secrets.GITHUB_TOKEN }}
- version: ${{ steps.get_version.outputs.version }}
34
+ version: ${{ steps.get_version.outputs.version }}
0 commit comments