We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2766936 + 3d3e39d commit f8039fcCopy full SHA for f8039fc
src/commands/create-task-from-issue.ts
@@ -134,9 +134,12 @@ _To be populated during implementation_
134
// Commit task file to main branch
135
console.log('💾 Committing task file...');
136
const safeIssueNumber = String(issue.number).replace(/[^0-9]/g, '');
137
- execSync(`git add . && git commit -m "feat: create TASK_${taskId} from GitHub issue #${safeIssueNumber}"`, {
138
- cwd: projectRoot,
139
- });
+ execSync(
+ `git add "${taskPath}" && git commit -m "feat: create TASK_${taskId} from GitHub issue #${safeIssueNumber}"`,
+ {
140
+ cwd: projectRoot,
141
+ },
142
+ );
143
144
// Create issue branch if not disabled
145
let branchName: string | null = null;
0 commit comments