GitHub Issue Workflow Template
想定用途
- Automatically create GitHub issues from Git diffs
- Establish issue-based task management workflow
- Link progress reports with commit history
プロンプト本文
text
From Git diffs,
Create an issue using gh command,
Report progress to the issue, commit with the issue number, then push and close,
Make issue and commit content understandable for later reference,
Add emojis to improve readability,
Split commits frequently,使い方
- Check Git diffs
- Create issue using
gh issue create - Report progress via issue comments during work
- Commit with commit message including issue number
- Push and close the issue
入力例
text
Please create an issue from the current Git diff and manage the work.出力例
text
## Confirmed Git diffs:
- src/utils.ts: Added new helper functions
- tests/utils.test.ts: Added tests
## Created issue:
#12 - ✨ Add utility functions and implement tests
## Progress report:
Completed implementation of helper functions. Next, implementing tests.
## Commits:
✨ Implement utility functions #12
📝 Add tests #12注意点
- Write specific issue titles
- Always include issue numbers in commit messages
- Report progress frequently
- Use emojis to improve visibility
- Split commits logically