Skip to content

Commit f81be6f

Browse files
committed
Use codeball.ai
1 parent f43c77a commit f81be6f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/approver/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Job} from './types'
33
import {isContributionJob, isFinalStatus} from './utils'
44

55
async function getJob(id: string): Promise<Job> {
6-
const res = await fetch(`https://api.codeball.forfunc.com/jobs/${id}`)
6+
const res = await fetch(`https://api.codeball.ai/jobs/${id}`)
77
const data = (await res.json()) as Job
88
return data
99
}
@@ -83,7 +83,7 @@ async function run(): Promise<void> {
8383
])
8484
.addLink(
8585
'View on web',
86-
`https://codeball.forfunc.com/prediction/${jobID}`
86+
`https://codeball.ai/prediction/${jobID}`
8787
)
8888
.write()
8989
} catch (error) {

src/baller/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function run(): Promise<void> {
2525
access_token: core.getInput('GITHUB_TOKEN')
2626
}
2727

28-
const response = await fetch('https://api.codeball.forfunc.com/jobs', {
28+
const response = await fetch('https://api.codeball.ai/jobs', {
2929
method: 'POST',
3030
body: JSON.stringify(data)
3131
})

0 commit comments

Comments
 (0)