Browse Source

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
changelog-update-2.4.0
Marcel Haßlinger 3 months ago committed by Jakub Chrzanowski
parent
commit
ae051ed9ae
  1. 2
      .github/workflows/release.yml

2
.github/workflows/release.yml

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

Loading…
Cancel
Save