Skip to content

Commit 29e4744

Browse files
committed
chore: correct typos
1 parent f242731 commit 29e4744

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

ci/create-artifacts.bash

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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
2727
curl -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

0 commit comments

Comments
 (0)