File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -39192,10 +39192,10 @@ const httpsProxyAgent = __nccwpck_require__(81908);
39192
39192
39193
39193
function configWithProxy(config) {
39194
39194
var c = config || {};
39195
- if (process.env.HTTPS_PROXY ) {
39196
- core.debug(`use proxy: ${process.env.HTTPS_PROXY }`);
39195
+ if (process.env.OPENAI_PROXY ) {
39196
+ core.debug(`use proxy: ${process.env.OPENAI_PROXY }`);
39197
39197
c.proxy = false;
39198
- c.httpsAgent = new httpsProxyAgent(process.env.HTTPS_PROXY );
39198
+ c.httpsAgent = new httpsProxyAgent(process.env.OPENAI_PROXY );
39199
39199
return c;
39200
39200
}
39201
39201
return c;
@@ -39245,6 +39245,7 @@ async function run() {
39245
39245
}
39246
39246
});
39247
39247
const code = response.data;
39248
+ core.debug(`diff code: ${code}`);
39248
39249
const files = parsePullRequestDiff(code);
39249
39250
core.debug(`diff files: ${files}`);
39250
39251
You can’t perform that action at this time.
0 commit comments