Skip to content

Commit 54333ae

Browse files
committed
Quick updates
1 parent 065ed3d commit 54333ae

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

content/guided-workshop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ Ready to get started? Let's go! The workshop scenario imagines you as a develope
3434
3. [Create a codespace](exercises/3-codespaces.md) to start writing code
3535
4. [Implement testing](exercises/4-testing.md) to supplement continuous integration
3636
5. [Add a new feature](exercises/5-coding.md) to implement the feature
37-
6. [Create a pull request](exercises/6-pull-request.md) to begin a code review
37+
6. [Use the GitHub flow](exercises/6-github-flow.md) to incorporate changes
3838
7. [Add automation](exercises/7-automation.md) to create a deployment environment
3939
8. [Deploy your project](exercises/8-deployment.md) to publish your project to the cloud

content/guided-workshop/exercises/5-coding.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,3 +170,13 @@ Let's finish out our coding by displaying the `Hours` component to **index.js**,
170170
```jsx
171171
<Hours />
172172
```
173+
174+
Congratulations! You've now created a new component and added the code to the landing page to display it.
175+
176+
## Summary and next steps
177+
178+
All developers write code with some form of assistance. This might come from a human pair programmer, copying/pasting code from a developer forum or documentation, or, in our case, and AI pair programer - GitHub Copilot. With GitHub Copilot, developers are able to focus on the bigger tasks while GitHub Copilot provides suggestions and generates code.
179+
180+
With the code added, it's time to use the GitHub flow to [incorporate your changes into the code base](./6-github-flow.md).
181+
182+
## Resources

0 commit comments

Comments
 (0)