File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -27,17 +27,15 @@ jobs:
2727 python-version : ' ${{ vars.PYTHON_VERSION }}'
2828 - name : Generate Release Notes
2929 id : generate_release_notes
30- run : |
31- python -m scripts.release.release_notes -s $INITIAL_COMMIT_SHA -v $INITIAL_VERSION -o release_notes_tmp.md
30+ run : python -m scripts.release.release_notes -s $INITIAL_COMMIT_SHA -v $INITIAL_VERSION -o release_notes_tmp.md
3231 env :
3332 INITIAL_COMMIT_SHA : ${{ vars.RELEASE_INITIAL_COMMIT_SHA }}
3433 INITIAL_VERSION : ${{ vars.RELEASE_INITIAL_VERSION }}
3534 - name : Summarize results
3635 run : cat release_notes_tmp.md >> $GITHUB_STEP_SUMMARY
3736 - name : Update PR comment
3837 if : github.event_name == 'pull_request'
39- run : |
40- gh issue comment $ISSUE --edit-last --create-if-none --body-file release_notes_tmp.md
38+ run : gh issue comment $ISSUE --edit-last --create-if-none --body-file release_notes_tmp.md
4139 env :
4240 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4341 ISSUE : ${{ github.event.pull_request.html_url }}
Original file line number Diff line number Diff line change 2828 python-version : ' ${{ vars.PYTHON_VERSION }}'
2929 - name : Check if changelog entry file was added in this PR
3030 run : |
31+ set -o pipefail
3132 python -m scripts.release.check_changelog -b $BASE_SHA -f $FAIL_ON_NO_CHANGES | tee >> $GITHUB_STEP_SUMMARY
3233 env :
3334 BASE_SHA : ${{ github.event.pull_request.base.sha }}
You can’t perform that action at this time.
0 commit comments