@topogram/cli 0.3.35 → 0.3.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/cli.js +4 -4
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -629,19 +629,19 @@ function printCatalogAuthSetup() {
|
|
|
629
629
|
console.log("Topogram catalog auth setup");
|
|
630
630
|
console.log("");
|
|
631
631
|
console.log("The default Topogram catalog is public and does not require GitHub auth.");
|
|
632
|
-
console.log("
|
|
632
|
+
console.log("Restricted GitHub catalog reads use GITHUB_TOKEN, GH_TOKEN, or `gh auth token`.");
|
|
633
633
|
console.log("");
|
|
634
|
-
console.log("
|
|
634
|
+
console.log("Restricted catalog local setup:");
|
|
635
635
|
console.log(" gh auth login");
|
|
636
636
|
console.log(" topogram catalog list");
|
|
637
637
|
console.log("");
|
|
638
|
-
console.log("
|
|
638
|
+
console.log("Restricted catalog GitHub Actions setup:");
|
|
639
639
|
console.log(" permissions:");
|
|
640
640
|
console.log(" contents: read");
|
|
641
641
|
console.log(" env:");
|
|
642
642
|
console.log(" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}");
|
|
643
643
|
console.log("");
|
|
644
|
-
console.log("For
|
|
644
|
+
console.log("For restricted catalog repositories, grant the workflow token or PAT read access.");
|
|
645
645
|
console.log("Run `topogram catalog doctor` after setup.");
|
|
646
646
|
}
|
|
647
647
|
|