mirror of
https://github.com/only-cli/oc.git
synced 2026-09-15 10:40:56 +02:00
setup-node's registry-url writes an npmrc auth-token line with a placeholder token, which npm used instead of OIDC and got a 404 from the registry. Dropping registry-url lets trusted publishing work. New clis: github.com (repo, user, search, trending, issues) and linkedin.com (profile, company, jobs; public guest views work through the Chrome fingerprint). Both verified live before shipping.
11 lines
466 B
JSON
11 lines
466 B
JSON
{
|
|
"domain": "github.com",
|
|
"commands": {
|
|
"repo": { "open": "https://github.com/{owner}/{repo}", "args": ["owner", "repo"] },
|
|
"user": { "open": "https://github.com/{name}", "args": ["name"] },
|
|
"search": { "open": "https://github.com/search?q={query}&type=repositories", "args": ["query"] },
|
|
"trending": { "open": "https://github.com/trending" },
|
|
"issues": { "open": "https://github.com/{owner}/{repo}/issues", "args": ["owner", "repo"] }
|
|
}
|
|
}
|