Skip to content

Commit

Permalink
Merge #303
Browse files Browse the repository at this point in the history
303: The "new package name should not include `julia` in the name" check should apply to all packages (including JLL packages) r=DilumAluthge a=DilumAluthge

If for some reason a new JLL package wants to include "julia" in its name, I think it's perfectly fine to require manual merge in that case.

Co-authored-by: Dilum Aluthge <dilum@aluthge.com>
  • Loading branch information
bors[bot] and DilumAluthge authored Nov 21, 2020
2 parents 081d950 + 366bc85 commit 844013d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RegistryCI"
uuid = "0c95cc5f-2f7e-43fe-82dd-79dbcba86b32"
authors = ["Dilum Aluthge <dilum@aluthge.com>", "Fredrik Ekre <ekrefredrik@gmail.com>"]
version = "4.4.1"
version = "4.5.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
4 changes: 1 addition & 3 deletions src/AutoMerge/new-package.jl
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,13 @@ function pull_request_build(api::GitHub.GitHubAPI,
if this_pr_can_use_special_jll_exceptions
g3 = true
g4 = true
g5 = true
m3 = ""
m4 = ""
m5 = ""
else
g3, m3 = meets_normal_capitalization(pkg)
g4, m4 = meets_name_length(pkg)
g5, m5 = meets_julia_name_check(pkg)
end
g5, m5 = meets_julia_name_check(pkg)
if this_pr_can_use_special_jll_exceptions
g6 = true
m6 = ""
Expand Down

2 comments on commit 844013d

@DilumAluthge
Copy link
Member

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 created: JuliaRegistries/General/25072

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 v4.5.0 -m "<description of version>" 844013d56fe541cae25aebd4993213b4d972c238
git push origin v4.5.0

Please sign in to comment.