Skip to content

Commit

Permalink
Update comment_trigger.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
d-g-town authored Nov 6, 2024
1 parent 8f40db0 commit ada5a09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/comment_trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ jobs:
const { data: check } = await github.rest.checks.create({
owner: context.repo.owner,
repo: context.repo.repo,
name: '🤖 Claude Review 🤖',
name: 'Review Request',
head_sha: pr.head.sha,
status: 'in_progress',
started_at: new Date().toISOString(),
details_url: `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`,
output: {
title: 'Processing Review Request',
summary: 'Processing /review command...'
Expand Down Expand Up @@ -82,6 +83,7 @@ jobs:
status: 'completed',
conclusion: 'success',
completed_at: new Date().toISOString(),
details_url: `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`,
output: {
title: 'Review Requested',
summary: 'Review has been requested successfully via /review command'
Expand Down

0 comments on commit ada5a09

Please sign in to comment.