fix(actions): use github event release body as conditional

output from a previous step has been removed recently - relying on github event release body to determine if pr should be opened
This commit is contained in:
Marcel Haßlinger 2025-09-23 21:13:37 +02:00 committed by GitHub
parent 02df6e806c
commit 07c930f897
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,7 @@ jobs:
# Create a pull request
- name: Create Pull Request
if: ${{ steps.properties.outputs.changelog != '' }}
if: ${{ github.event.release.body != '' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |