Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit 563e3d4

Browse files
authored
fix task impl trigger (#58)
1 parent 4b5b009 commit 563e3d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/task-implementer-agent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
}
7878
7979
// Task implementer continues when the request is from a pull request
80-
const isContinuing = !!context.payload.pull_request;
80+
const isContinuing = !!context.payload.pull_request || (context.payload.issue && context.payload.issue.pull_request);
8181
8282
try {
8383
await github.rest.issues.removeLabel({

0 commit comments

Comments
 (0)