Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hack/run-e2e-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ yarn build

act pull_request -e tests/act-pull-request.json \
-s GITHUB_TOKEN=${GITHUB_TOKEN} \
--env CODEBALL_API_HOST=http://host.docker.internal:8080
--env CODEBALL_API_HOST=http://host.docker.internal:8080 \
--env GITHUB_STEP_SUMMARY=/dev/null
6 changes: 5 additions & 1 deletion src/baller/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ async function run(): Promise<{jobId: string}> {
run()
.then(async ({jobId}) => {
await track({jobID: jobId, actionName: 'baller'})
core.setOutput('codeball-job-id', jobId)
await core.setOutput('codeball-job-id', jobId)

core.summary
.addLink('Codeball Dashboard for ' + process.env.GITHUB_REPOSITORY, 'https://codeball.ai/' + process.env.GITHUB_REPOSITORY)
.write()
})
.catch(async error => {
await track({actionName: 'baller', error: error.message})
Expand Down