Create a new branch originating from the current main branch:
dev/{xy}/workshop // Replace {xy} with your initials, e.g., dev/bg/workshop
Replace the word "some" in the main.ps1 script with the name of your choice for the pizza. For the menu, see Bella Palma Menu.
Add a commit with the title:
chore(main): order my pizza
Ensure that the pipeline succeeds after making this change.
- Check that the pipeline runs successfully after pushing your branch.
- Confirm that the commit title matches the required format.
Adjust your dev branch to include all commits from the workshop-branch and then your own commit. Follow these steps:
- Merge the commit titled
"WIP fix errors"into the relevant commits. Use an interactive rebase to clean up the history. - Rename the commit titled
feat(order): implement Send-Ordertofeat(order): implement Submit-Order. - Ensure the final order of commits is as follows:
feat(order): implement Submit-Orderchore(main): call Submit-Order with custom pizzarefact(main): extract Get-Pizzachore(main): order my pizza
- Ensure there are no unnecessary commits in the history.
- Verify that the pipeline succeeds after pushing the updated branch.