@h-rig/runtime 0.0.6-alpha.0 → 0.0.6-alpha.1
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.
|
@@ -284,7 +284,7 @@ async function runRepoDefaultMerge(input) {
|
|
|
284
284
|
}
|
|
285
285
|
async function runPrAutomation(input) {
|
|
286
286
|
const prConfig = input.config?.pr ?? {};
|
|
287
|
-
if (prConfig.mode === "off") {
|
|
287
|
+
if (prConfig.mode === "off" || prConfig.mode === "ask") {
|
|
288
288
|
return { status: "skipped", iterations: 0, actionableFeedback: [] };
|
|
289
289
|
}
|
|
290
290
|
const body = buildPrAutomationBody({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/runtime",
|
|
3
|
-
"version": "0.0.6-alpha.
|
|
3
|
+
"version": "0.0.6-alpha.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Rig package",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -64,11 +64,12 @@
|
|
|
64
64
|
"module": "./dist/src/index.js",
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@libsql/client": "^0.17.2",
|
|
67
|
-
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.
|
|
68
|
-
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.
|
|
69
|
-
"@rig/hook-kit": "npm:@h-rig/hook-kit@0.0.6-alpha.
|
|
70
|
-
"@rig/shared": "npm:@h-rig/shared@0.0.6-alpha.
|
|
71
|
-
"@rig/validator-kit": "npm:@h-rig/validator-kit@0.0.6-alpha.
|
|
72
|
-
"effect": "4.0.0-beta.78"
|
|
67
|
+
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.1",
|
|
68
|
+
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.1",
|
|
69
|
+
"@rig/hook-kit": "npm:@h-rig/hook-kit@0.0.6-alpha.1",
|
|
70
|
+
"@rig/shared": "npm:@h-rig/shared@0.0.6-alpha.1",
|
|
71
|
+
"@rig/validator-kit": "npm:@h-rig/validator-kit@0.0.6-alpha.1",
|
|
72
|
+
"effect": "4.0.0-beta.78",
|
|
73
|
+
"smol-toml": "^1.6.0"
|
|
73
74
|
}
|
|
74
75
|
}
|