Skip to content

Commit 5479c6d

Browse files
committed
Merge branch 'main' into v1
2 parents cde445a + f81be6f commit 5479c6d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
**Save time and $$$, use Codeball to perform an early review of all your code.**
66

7-
* [Online Demo](http://codeball.forfunc.com/)
7+
* [Online Demo](https://codeball.ai/)
88

99
## Quick Start
1010

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)