From c203dc7a44148f5e68962874b043e1ea132455e8 Mon Sep 17 00:00:00 2001 From: Yusuf Ali Date: Sun, 14 Dec 2025 12:36:14 +0000 Subject: [PATCH] feat: update public url reference --- action.yml | 4 ++-- dist/index.js | 2 +- index.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 9b6201a..11bb67b 100644 --- a/action.yml +++ b/action.yml @@ -3,7 +3,7 @@ description: 'Sends a coding automation task to coding bot' inputs: api_url: description: 'api url' - default: 'https://api.servc.io' + default: 'http://agents-automation-api.agents:3000' required: false api_token: description: 'API token for authentication' @@ -19,4 +19,4 @@ inputs: runs: using: 'node20' - main: 'dist/index.js' \ No newline at end of file + main: 'dist/index.js' diff --git a/dist/index.js b/dist/index.js index 008a20a..d8d2266 100644 --- a/dist/index.js +++ b/dist/index.js @@ -32863,7 +32863,7 @@ async function fetchFirstIssueComment(repoFullName, issueNumber, githubToken, se } 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 botRoute = core.getInput('bot_route') || 'codebot'; const debug = (core.getInput('debug') || 'false').toLowerCase() === 'true'; diff --git a/index.js b/index.js index fa28355..27bc34a 100644 --- a/index.js +++ b/index.js @@ -31,7 +31,7 @@ async function fetchFirstIssueComment(repoFullName, issueNumber, githubToken, se } 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 botRoute = core.getInput('bot_route') || 'codebot'; const debug = (core.getInput('debug') || 'false').toLowerCase() === 'true';