Skip to content

Commit

Permalink
ci(create-release-pr): fix computed from tag [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakutoc committed Jul 24, 2024
1 parent b605ed3 commit 7a1706e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ name: Create release PR and generate changelog

on:
workflow_dispatch:

inputs:
from-tag:
description: ''
required: false

jobs:
release-pr:
name: Create release PR with changelog
Expand Down Expand Up @@ -32,7 +36,7 @@ jobs:
id: github_release
uses: mikepenz/[email protected]
with:
fromTag: ${{ env.FROM_TAG }}
fromTag: ${{ github.event.inputs.from-tag || env.FROM_TAG }}
configuration: "./.github/changelog-builder-config.json"

- name: List pull request
Expand Down

0 comments on commit 7a1706e

Please sign in to comment.