File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ jobs:
2020 OLD_COMMIT_N : ${{ github.event.inputs.old_commit_n }}
2121 NEW_COMMIT_N : ${{ github.event.inputs.new_commit_n }}
2222 steps :
23- - name : Check last version
24- run : bash ./ci/check-last-version.bash
2523 - name : Checkout the repo
2624 uses : actions/checkout@v2
25+ - name : Check last version
26+ run : bash ./ci/check-last-version.bash
2727 - name : Set env vars
2828 id : var
2929 run : . ./ci/set-env-vars.bash
Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ echo -en "Check [upstream](https://github.com/flatwhatson/emacs/commits) for the
2525
2626# Get the list of commits since last release
2727curl -s " $UPSTREAM_GH " /commits? per_page=" $delta " | \
28- # Parse and retain only the commit message + its url
29- jq -r ' .[] | (.commit.message | capture("(?<id>.+)\n").id) + " [commit](" + .html_url + ")"' | \
30- # Remove "Merge" commits
31- sed ' /^Merge/,+1 d' | \
32- # Remove any special char at the beginning of the message
33- sed ' s/^[^[:alnum:]]*//' | \
34- # Prepend "- " to the message
35- sed -r ' s/(.*)/- \1/' >> body.md
28+ # Parse and retain only the commit message + its url
29+ jq -r ' .[] | (.commit.message | capture("(?<id>.+)\n").id) + " [commit](" + .html_url + ")"' | \
30+ # Remove "Merge" commits
31+ sed ' /^Merge/,+1 d' | \
32+ # Remove any special char at the beginning of the message
33+ sed ' s/^[^[:alnum:]]*//' | \
34+ # Prepend "- " to the message
35+ sed -r ' s/(.*)/- \1/' >> body.md
You can’t perform that action at this time.
0 commit comments