Skip to content

Commit

Permalink
Merge #470 #472
Browse files Browse the repository at this point in the history
470: Documentation: fix a typo in `private-registries.md` r=DilumAluthge a=thomvet

Minor typo.

472: checking name similarity requires an extracted registry r=DilumAluthge a=czimm79

Added a brief note explaining that `get_all_non_jll_package_names` requires a non-default extracted General registry, as explained in #442 .

Co-authored-by: Thomas Vetter <[email protected]>
Co-authored-by: Coy Zimmermann <[email protected]>
  • Loading branch information
3 people committed Aug 26, 2022
3 parents 3b7dd59 + 72b3750 + 2b54b98 commit b6ffd4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ AutoMerge.meets_distance_check("MyPackage", all_pkg_names)
where `path_to_registry` is a path to the folder containing the registry of
interest. For the General Julia registry, usually `path_to_registry =
joinpath(DEPOT_PATH[1], "registries", "General")` if you haven't changed
your `DEPOT_PATH`. This will return a boolean, indicating whether or not
your `DEPOT_PATH` and have an extracted version of the Pkg server registry (see JuliaRegistries/RegistryCI.jl#442). This will return a boolean, indicating whether or not
your tentative package name passed the check, as well as a string,
indicating what the problem is in the event the check did not pass.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/private-registries.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ After you have the registry configured, you can setup CI using RegistryCI by fol

## Basic configuration

You will first need to copy the `.ci` folder in the root of the General registry to the root of your own registry. This folder contains some resources required for the RegistryCI package to work and update itself. If you do not need AutoMerge support, there is now need to copy the
You will first need to copy the `.ci` folder in the root of the General registry to the root of your own registry. This folder contains some resources required for the RegistryCI package to work and update itself. If you do not need AutoMerge support, there is no need to copy the
`stopwatch.jl` file in the `.ci` folder.

Next, you will need to copy the `ci.yml` and `update_manifest.yml` workflow files.
Expand Down

0 comments on commit b6ffd4c

Please sign in to comment.