Skip to content

chore: address commit comments for commit 1e0529a (issue #6912) #6923

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: replace smart quote with ASCII quote in comment
Signed-off-by: Lalit Narayan Yadav <[email protected]>
  • Loading branch information
LalitNarayanYadav authored May 4, 2025
commit 0709db4b7663411eae5ae919dd6027571b6cf264
4 changes: 2 additions & 2 deletions .github/workflows/scripts/generate_pr_commit_message
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ main() {
#
# - https://github.com/stdlib-js/stdlib/issues/123
# - stdlib-js/stdlib#123
# - #123 (**not** preceded by a word‑char, “/”, or “>”)
# - #123 (**not** preceded by a word‑char, "/", or ">")
grep -oE 'https://github\.com/stdlib-js/stdlib/issues/[0-9]+|stdlib-js/stdlib#[0-9]+|(^|[^[:alnum:]_/>])#[0-9]+' |
# Strip the prefix so were left with the bare issue number:
# Strip the prefix so we're left with the bare issue number:
sed -E '
s@https://github\.com/stdlib-js/stdlib/issues/([0-9]+)@\1@;
s@stdlib-js/stdlib#([0-9]+)@\1@;
Expand Down