Actions
Pull Requests Workflow » History » Revision 1
Revision 1/13
| Next »
Miguel Gonzalez, 08/08/2025 07:45 PM
Pull Requests Workflow¶
- Recommended: Github Pull Requests extension for VSCode
Developer Steps¶
Starting a task¶
- Create a branch from development named 'task_number' - 'short_description' (or just the description if there is no associated task number)
Working a task¶
Daily and before any commit¶
- Rebase from development
- Resolve conflicts
Pushing code¶
- Push whenever there is a distinct and stable change (not the entire task; just a small, concise, and related chunk of changes)
- Commit
- Push
- Create pull request
- Set yourself as owner of the pull request
- Be on the lookout for changes requested
Finishing a task¶
- When the task is considered finished and closed, the branch is deleted
- Any future fixes to this functionality will be considered a new task with a new branch
Reviewer Steps¶
- Choose an open pull request
- Review changes
- Recommend changes or approve pull request
- Be on the lookout for the owner of the request implementing the changes (repeat steps 2 and 3 after changes are commited)
- When code is acceptable, merge the branch into Development
Keep in mind¶
- If using VSCode extension, you might need to manually refresh at some points throughout the process.
- Once you've created a pull request, you can push commits from your task branch to add them to your existing pull request. These commits will appear in chronological order within your pull request and the changes will be visible in the "Files changed" tab.
Updated by Miguel Gonzalez 4 months ago · 13 revisions