File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 8
8
default : " 1"
9
9
required : false
10
10
type : string
11
- local-registry-urls :
11
+ localregistry :
12
12
description : ' URLs of registries besides General to use. Specified by providing the url (https/ssh) to the Github
13
13
repositories as a newline (\n) seperated list. Should correspond to the registry names listed in
14
- `local-registry -names`.'
14
+ `localregistry -names`.'
15
15
default : " "
16
16
required : false
17
17
type : string
18
- local-registry -names :
18
+ localregistry -names :
19
19
description : ' Names of registries besides General to use. Specified by providing the name of the registries
20
- as a newline (\n) seperated list. Should correspond to the registry URLs listed in `local-registry-urls `.'
20
+ as a newline (\n) seperated list. Should correspond to the registry URLs listed in `localregistry `.'
21
21
default : " "
22
22
required : false
23
23
type : string
@@ -60,10 +60,10 @@ jobs:
60
60
url = "https://github.com/JuliaRegistries/General.git",
61
61
)
62
62
]
63
- if !isempty("${{ inputs.local-registry-urls }}")
64
- registry_urls = split("${{ inputs.local-registry-urls }}", "\n") .|> string
65
- registry_names = if !isempty("${{ inputs.local-registry -names }}")
66
- split("${{ inputs.local-registry -names }}", "\n") .|> string
63
+ if !isempty("${{ inputs.localregistry }}")
64
+ registry_urls = split("${{ inputs.localregistry }}", "\n") .|> string
65
+ registry_names = if !isempty("${{ inputs.localregistry -names }}")
66
+ split("${{ inputs.localregistry -names }}", "\n") .|> string
67
67
else
68
68
# Guess the registry name from the last part of the repository URL.
69
69
map(registry_url -> string(first(split(last(split(registry_url, '/')), '.'))), registry_urls)
Original file line number Diff line number Diff line change @@ -181,12 +181,12 @@ The CompatHelper workflow is designed to periodically check dependencies for bre
181
181
releases, and if so make PRs to bump the compat versions. By default this workflow
182
182
checks the Julia [General registry](https://github.com/JuliaRegistries/General)
183
183
for breaking releases of dependencies, but you can add other registries
184
- by specifying the registry URLs with the `local-registy-urls ` option,
184
+ by specifying the registry URLs with the `localregistry ` option,
185
185
which should be strings with registry URLs seperated by a newline character (`\n`).
186
186
Registry names will be guess from the URLs, for example if a registry URL
187
187
is "https://github.com/ITensor/ITensorRegistry.git" we will guess that the
188
188
registry name is "ITensorRegistry". If that is not the case for one or more registry,
189
- you will need to specify all of the registry names as well using the `local-registry -names`
189
+ you will need to specify all of the registry names as well using the `localregistry -names`
190
190
in the same format. Here is an example workflow :
191
191
192
192
` ` ` yaml
@@ -205,7 +205,7 @@ jobs:
205
205
name: "CompatHelper"
206
206
uses: "ITensor/ITensorActions/.github/workflows/CompatHelper.yml@main"
207
207
with:
208
- local-registry-urls : "https://github.com/ITensor/ITensorRegistry.git"
208
+ localregistry : "https://github.com/ITensor/ITensorRegistry.git"
209
209
` ` `
210
210
211
211
# # IntegrationTest
You can’t perform that action at this time.
0 commit comments