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 fbaab5b commit af6bc20Copy full SHA for af6bc20
.github/workflows/release.yml
@@ -79,6 +79,14 @@ jobs:
79
hydro_lang hydro_std
80
hydro_deploy hydro_cli hydro_deploy_integration
81
multiplatform_test
82
+ |& tee release.log
83
env:
84
# Make sure to set this so the `gh` CLI works using our token.
85
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
86
+
87
+ - name: Check release.log for changelog review
88
+ run: |
89
+ if grep "WOULD ask for review" release.log; then
90
+ echo "Changelog review required. Please see the line above and check RELEASING.md for more details."
91
+ exit 1
92
+ fi
0 commit comments