notion-github 0.1.11 → 0.1.13
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/README.md +1 -1
- package/dist/cli.js +29 -37
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cli.js
CHANGED
@@ -2789,7 +2789,7 @@ var {
|
|
2789
2789
|
} = import_index.default;
|
2790
2790
|
|
2791
2791
|
// package.json
|
2792
|
-
var version = "0.1.
|
2792
|
+
var version = "0.1.13";
|
2793
2793
|
|
2794
2794
|
// src/commands/create/action.ts
|
2795
2795
|
var import_rest = require("@octokit/rest");
|
@@ -2797,37 +2797,18 @@ var import_rest = require("@octokit/rest");
|
|
2797
2797
|
// src/utils/config.ts
|
2798
2798
|
var import_fs = __toESM(require("fs"));
|
2799
2799
|
var import_path = __toESM(require("path"));
|
2800
|
-
var
|
2801
|
-
var CONFIG_FILE = "notion_github_config.json";
|
2800
|
+
var CONFIG_FILE = "ng-config.json";
|
2802
2801
|
function readConfig() {
|
2803
|
-
console.log("=== Debug Information ===");
|
2804
|
-
console.log("Current working directory:", process.cwd());
|
2805
|
-
console.log("Home directory:", import_os.default.homedir());
|
2806
2802
|
try {
|
2807
2803
|
const currentDirPath = import_path.default.join(process.cwd(), CONFIG_FILE);
|
2808
|
-
const homeDirPath = import_path.default.join(import_os.default.homedir(), CONFIG_FILE);
|
2809
|
-
console.log("\nSearching for config file at:");
|
2810
|
-
console.log("1.", currentDirPath);
|
2811
|
-
console.log(" Exists:", import_fs.default.existsSync(currentDirPath));
|
2812
|
-
console.log("2.", homeDirPath);
|
2813
|
-
console.log(" Exists:", import_fs.default.existsSync(homeDirPath));
|
2814
|
-
let configPath = "";
|
2815
2804
|
if (import_fs.default.existsSync(currentDirPath)) {
|
2816
|
-
|
2817
|
-
|
2818
|
-
|
2819
|
-
|
2820
|
-
|
2821
|
-
} else {
|
2822
|
-
throw new Error(
|
2823
|
-
`Config file not found. Please create ${CONFIG_FILE} in your project directory or home directory.`
|
2824
|
-
);
|
2825
|
-
}
|
2826
|
-
const config = JSON.parse(import_fs.default.readFileSync(configPath, "utf8"));
|
2827
|
-
if (!config.githubToken) {
|
2828
|
-
throw new Error("GitHub token not found in config file.");
|
2805
|
+
const config = JSON.parse(import_fs.default.readFileSync(currentDirPath, "utf8"));
|
2806
|
+
if (!config.githubToken) {
|
2807
|
+
throw new Error("GitHub token not found in config file.");
|
2808
|
+
}
|
2809
|
+
return config;
|
2829
2810
|
}
|
2830
|
-
|
2811
|
+
throw new Error(`Config file not found at ${currentDirPath}`);
|
2831
2812
|
} catch (error) {
|
2832
2813
|
if (error instanceof Error) {
|
2833
2814
|
throw new Error(`Failed to read config: ${error.message}`);
|
@@ -2846,18 +2827,29 @@ async function action(options) {
|
|
2846
2827
|
throw new Error("Invalid repository format. Use 'owner/repo' format.");
|
2847
2828
|
}
|
2848
2829
|
console.log("Creating PR...");
|
2849
|
-
|
2850
|
-
|
2851
|
-
|
2852
|
-
|
2853
|
-
|
2854
|
-
|
2855
|
-
|
2856
|
-
|
2857
|
-
|
2830
|
+
try {
|
2831
|
+
const response = await octokit.pulls.create({
|
2832
|
+
owner,
|
2833
|
+
repo,
|
2834
|
+
title: options.title,
|
2835
|
+
head: options.head,
|
2836
|
+
base: options.base || "main",
|
2837
|
+
body: options.description
|
2838
|
+
});
|
2839
|
+
console.log(`PR created successfully: ${response.data.html_url}`);
|
2840
|
+
} catch (e) {
|
2841
|
+
if (e.message.includes("Validation Failed")) {
|
2842
|
+
console.error("Failed to create PR: Please check if:");
|
2843
|
+
console.error("1. The source branch (--head) exists in the repository");
|
2844
|
+
console.error("2. The target branch (--base) exists in the repository");
|
2845
|
+
console.error("3. You have permission to create PRs in this repository");
|
2846
|
+
} else {
|
2847
|
+
throw e;
|
2848
|
+
}
|
2849
|
+
}
|
2858
2850
|
} catch (error) {
|
2859
2851
|
if (error instanceof Error) {
|
2860
|
-
console.error("
|
2852
|
+
console.error("Error:", error.message);
|
2861
2853
|
} else {
|
2862
2854
|
console.error("An unknown error occurred");
|
2863
2855
|
}
|