feat: update public url reference #2
@@ -3,7 +3,7 @@ description: 'Sends a coding automation task to coding bot'
|
|||||||
inputs:
|
inputs:
|
||||||
api_url:
|
api_url:
|
||||||
description: 'api url'
|
description: 'api url'
|
||||||
default: 'https://api.servc.io'
|
default: 'http://agents-automation-api.agents:3000'
|
||||||
required: false
|
required: false
|
||||||
api_token:
|
api_token:
|
||||||
description: 'API token for authentication'
|
description: 'API token for authentication'
|
||||||
|
|||||||
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -32863,7 +32863,7 @@ async function fetchFirstIssueComment(repoFullName, issueNumber, githubToken, se
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
const apiUrl = core.getInput('api_url') || 'https://api.servc.io';
|
const apiUrl = core.getInput('api_url') || 'http://agents-automation-api.agents:3000';
|
||||||
const apiToken = core.getInput('api_token');
|
const apiToken = core.getInput('api_token');
|
||||||
const botRoute = core.getInput('bot_route') || 'codebot';
|
const botRoute = core.getInput('bot_route') || 'codebot';
|
||||||
const debug = (core.getInput('debug') || 'false').toLowerCase() === 'true';
|
const debug = (core.getInput('debug') || 'false').toLowerCase() === 'true';
|
||||||
|
|||||||
2
index.js
2
index.js
@@ -31,7 +31,7 @@ async function fetchFirstIssueComment(repoFullName, issueNumber, githubToken, se
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
const apiUrl = core.getInput('api_url') || 'https://api.servc.io';
|
const apiUrl = core.getInput('api_url') || 'http://agents-automation-api.agents:3000';
|
||||||
const apiToken = core.getInput('api_token');
|
const apiToken = core.getInput('api_token');
|
||||||
const botRoute = core.getInput('bot_route') || 'codebot';
|
const botRoute = core.getInput('bot_route') || 'codebot';
|
||||||
const debug = (core.getInput('debug') || 'false').toLowerCase() === 'true';
|
const debug = (core.getInput('debug') || 'false').toLowerCase() === 'true';
|
||||||
|
|||||||
Reference in New Issue
Block a user