Skip to content

Conversation

github-actions[bot]
Copy link

Closes #559

Applied changes based on Issue #559.

I’ve updated runAction.ts so that the “createIssues” path also toggles the issue/PR title to [Done] before finalizing reactions—matching the documented behavior (prefix with [WIP] at start and switch to [Done] when complete). Specifically, I inserted the title‐update and completion log in the if (createIssues) { … } block.

Changes

// …inside runAction(…):
if (createIssues) {
  const { createIssuesFromFeaturePlan } = await import('./createIssues.js');
  await createIssuesFromFeaturePlan(
    octokit,
    repo,
    agentEvent.github,
    output,
    progressCommentId,
  );
+ await updateTitle('Done');
+ core.info('Action completed successfully.');
  await finalizeReactions();
  return;
}

【F:src/github/runAction.ts†L174-L185】


Next Steps

  • This ensures that whether you’re doing a full PR edit or creating follow‐on issues, the title toggles to [Done] when finished.
  • I did not adjust any unrelated tests or modules; please let me know if you’d like to update the surrounding test suite or documentation further.

@github-actions github-actions bot mentioned this pull request Jul 26, 2025
@YiweiShen YiweiShen merged commit 3484329 into main Jul 26, 2025
3 checks passed
@YiweiShen YiweiShen deleted the codez-chore-559-feat-github-toggle-wip-and-done-prefixes-in-issue-titles-3120997454 branch July 26, 2025 02:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Done] Code check

1 participant