We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f46550f commit 2db1cbcCopy full SHA for 2db1cbc
.github/workflows/task-implementer-agent.yml
@@ -76,13 +76,8 @@ jobs:
76
return;
77
}
78
79
- // Check if project-task label exists to determine if continuing
80
- const { data: issue } = await github.rest.issues.get({
81
- owner: context.repo.owner,
82
- repo: context.repo.repo,
83
- issue_number: issueNumber
84
- });
85
- const isContinuing = issue.labels.some(label => label.name === 'project-task');
+ // Task implementer continues when the request is from a pull request
+ const isContinuing = !!context.payload.pull_request;
86
87
try {
88
await github.rest.issues.removeLabel({
0 commit comments