File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {Job} from './types'
33import { isContributionJob , isFinalStatus } from './utils'
44
55async 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 ) {
Original file line number Diff line number Diff 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 } )
You can’t perform that action at this time.
0 commit comments