gaunt-sloth-assistant 0.1.0 → 0.1.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.
package/RELEASE-HOWTO.md
CHANGED
package/package.json
CHANGED
@@ -105,7 +105,7 @@ export function reviewCommand(program, context) {
|
|
105
105
|
// Get PR diff using the 'gh' provider
|
106
106
|
const providerPath = `../providers/${CONTENT_PROVIDERS['gh']}`;
|
107
107
|
const {get} = await import(providerPath);
|
108
|
-
content.push(await get(prId));
|
108
|
+
content.push(await get(null, prId));
|
109
109
|
|
110
110
|
const {review} = await import('../modules/reviewModule.js');
|
111
111
|
await review(`sloth-PR-${prId}-review`, preamble.join("\n"), content.join("\n"));
|