Files
2025-11-30 08:57:18 +08:00

14 lines
885 B
Markdown

# Execute a GitHub Issue task
Review the GitHub Issue content and perform the task execution.
Follow these steps to proceed with the task:
1. **Update main branch**: Switch to the main branch with `git checkout main`, then update to the latest state with `git pull origin main`.
2. **Review Issue content**: Use the `gh issue view #$ARGUMENTS` command to check the details of the specified Issue.
3. **Create branch**: Based on the Issue content, create a new branch with appropriate naming.
4. **Break down tasks**: Break down the Issue content into tasks and clarify the necessary work.
5. **Execute work**: Make code modifications and additions based on the tasks.
6. **Commit and push**: While progressing with the work, commit at appropriate granularity and push.
7. **Create pull request**: Once the work is completed, use the `gh pr create` command to create a pull request.