feat: update public url reference #2

Merged
drgroot merged 1 commits from ci into main 2025-12-14 12:37:37 +00:00
3 changed files with 4 additions and 4 deletions

View File

@@ -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'
@@ -19,4 +19,4 @@ inputs:
runs: runs:
using: 'node20' using: 'node20'
main: 'dist/index.js' main: 'dist/index.js'

2
dist/index.js vendored
View File

@@ -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';

View File

@@ -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';