Skip to content

Commit

Permalink
Rename an internal variable (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Nov 30, 2020
1 parent 89b8570 commit bdb95aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bump-stdlibs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function _bump_single_stdlib(stdlib::StdlibInfo;
run(`git checkout $(upstream_julia_repo_default_branch)`)
assert_current_branch_is(upstream_julia_repo_default_branch)
pr_title = "🤖 Bump the $(name) stdlib to $(stdlib_latest_commit_short)$(pr_title_suffix)"
pr_title_long = "🤖 Bump the $(name) stdlib to $(stdlib_latest_commit)$(pr_title_suffix)"
commit_message = "🤖 Bump the $(name) stdlib to $(stdlib_latest_commit)$(pr_title_suffix)"
pr_branch = "BumpStdlibs/$(name)-$(stdlib_latest_commit_short)$(pr_branch_suffix)"
pr_body = string(
"```\n",
Expand All @@ -121,7 +121,7 @@ function _bump_single_stdlib(stdlib::StdlibInfo;
cd("FORK")
run(`git add stdlib/$(name).version`)
run(`bash -c "git add deps/checksums/$(name)-*"`)
run(`git commit -m "$(pr_title_long)"`)
run(`git commit -m "$(commit_message)"`)
run(`git push -f origin $(pr_branch)`)
whoami = GitHub.whoami(; auth = auth).login
pr_head_with_fork_owner = "$(whoami):$(pr_branch)"
Expand Down

2 comments on commit bdb95aa

@DilumAluthge
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/25519

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" bdb95aa4e039741198f9d869b7c41117f0646a71
git push origin v1.0.0

Please sign in to comment.