We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 917d617 + 220fa1e commit bb8ae35Copy full SHA for bb8ae35
2 files changed
.github/release-notes.sh
@@ -24,7 +24,7 @@ gh api "/repos/${GITHUB_REPOSITORY}/releases/generate-notes" \
24
trim_trailing_newlines() {
25
local text
26
text="$(cat)"
27
- echo -n "${text//$'\n'}"
+ echo -n "${text}"
28
}
29
30
linkify_gh() {
.github/workflows/propose-release.yml
@@ -26,6 +26,7 @@ jobs:
extra-commands-early: |
echo ${{ inputs.version }} > .version-determinate
git add .version-determinate
+ git commit -m "Set .version-determinate to ${{ inputs.version }}" || true
./.github/release-notes.sh
31
git add doc
- git commit -m "Set .version-determinate to ${{ inputs.version }}" || true
32
+ git commit -m "Generare release notes for ${{ inputs.version }}" || true
0 commit comments