Skip to content

Commit fb56683

Browse files
committed
Small markdown updates
1 parent 6eaf29e commit fb56683

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@ instance/
3737
.webassets-cache
3838
flask_session/
3939
.coverage
40-
htmlcov/
40+
htmlcov/
41+
42+
test-results/

content/full-day/1-code-scanning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ Regardless of the reason, even seemingly innocuous tokens can create a security
5050
Let's enable Secret scanning to detect any potential keys.
5151

5252
1. On the same page (**Settings** > **Code security and analysis**), towards the very bottom, locate the **Secret scanning** section.
53-
1. Next to **Receive alerts on GitHub for detected secrets, keys or other tokens**, select **Enable**.
54-
1. Next to **Push protection**, select **Enable** to block pushes to the repository which contain a [supported secret][supported-secrets].
53+
2. Next to **Receive alerts on GitHub for detected secrets, keys or other tokens**, select **Enable**.
54+
3. Next to **Push protection**, select **Enable** to block pushes to the repository which contain a [supported secret][supported-secrets].
5555

5656
![Screenshot of fully configured secret scanning](./images/1-secret-scanning.png)
5757

content/full-day/2-issues.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Our project needs two main updates. We want to make the updates to support devel
2626
1. Return to the repository you created at the beginning of this workshop.
2727
1. Select the **Issues** tab.
2828
1. Select **New issue**.
29-
2. If prompted for type, select **Blank issue**.
30-
3. Select **Create more** at the bottom of the page to streamline the creation process.
31-
4. Create new issues by adding the information indicated in the table below, selecting **Submit new issue** after creating each one:
29+
1. If prompted for type, select **Blank issue**.
30+
1. Select **Create more** at the bottom of the page to streamline the creation process.
31+
1. Create new issues by adding the information indicated in the table below, selecting **Submit new issue** after creating each one:
3232

3333
| Title | Description |
3434
| ----------------------- | ------------------------------------------------------------------------------ |
@@ -42,9 +42,11 @@ Our project needs two main updates. We want to make the updates to support devel
4242
You've now defined all the issues for the workshop! You'll use these issues to help guide your progress through the workshop.
4343

4444
## Summary and next steps
45+
4546
GitHub Issues are the core to project management on GitHub. Their flexibility allows your organization to determine the best course of action to support your development lifecycle's methodology. With your issues created, it's time to turn your attention to the first big change to the project, [defining a codespace][walkthrough-next].
4647

4748
## Resources
49+
4850
- [GitHub Issues][issues-docs]
4951
- [Communicate using markdown][skills-markdown]
5052
- [GitHub Projects][projects-docs]

content/full-day/3-codespaces.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ You've now defined a custom container!
104104
Whenever someone uses the codespace you defined they'll have an environment with Node.js and Mongo DB, and the GitHub Copilot extension installed. Let's use this container!
105105

106106
1. Access the Command Palette (<kbd>F1</kbd> or clicking ☰ → View → Command Palette), then start typing **dev container**.
107-
1. Type **rebuild** and select **Codespaces: Rebuild container**.
108-
1. Select **Rebuild Container** on the dialog box. Your container now rebuilds.
107+
2. Type **rebuild** and select **Codespaces: Rebuild container**.
108+
3. Select **Rebuild Container** on the dialog box. Your container now rebuilds.
109109

110110
> [!IMPORTANT]
111111
> Rebuilding the container can take several minutes. Obviously this isn't an ideal situation for providing fast access to your developers, even if it's faster than creating everything from scratch. Fortunately you can [prebuild your codespaces][codespace-prebuild] to ensure developers can spin one up within seconds.
@@ -149,9 +149,11 @@ Custom containers for GitHub Codespaces become part of the source code for the r
149149

150150

151151
## Summary and next steps
152+
152153
Congratulations! You have now defined a custom development environment including all services and extensions. This eliminates the initial setup hurdle normally required when contributing to a project. Let's use this codespace to [implement testing and continuous integration][walkthrough-next] for the project.
153154

154155
## Resources
156+
155157
- [GitHub Codespaces][codespaces]
156158
- [Getting started with GitHub Codespaces][codespaces-docs]
157159
- [Defining dev containers][dev-containers-docs]

content/full-day/4-testing.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ Now that we have an overview of the structure of a workflow, let's ask Copilot t
5454
5. Add the test file **test_app.py** to the context by using the `#` in the Chat dialog box and beginning to type **test_app.py**, and pressing <kbd>enter</kbd> when it's highlighted.
5555
6. Prompt Copilot to create a GitHub Action workflow to run the tests. Use natural language to describe the workflow you're looking to create (to run the tests defined in test_app.py), and that you want it to run on merge (for when new code is pushed), when a PR is made, and on demand.
5656

57-
> [!IMPORTANT]
58-
> A prescriptive prompt isn't provided as part of the exercise is to become comfortable interacting with GitHub Copilot.
57+
> [!IMPORTANT]
58+
> A prescriptive prompt isn't provided as part of the exercise is to become comfortable interacting with GitHub Copilot.
5959
60-
6. Add the generated code to the new file by hovering over the suggested code and selecting the **Insert at cursor** button. The generated code should resemble the following:
60+
7. Add the generated code to the new file by hovering over the suggested code and selecting the **Insert at cursor** button. The generated code should resemble the following:
6161

6262
```yml
6363
name: Server Tests
@@ -154,6 +154,7 @@ You've now seen a workflow, and explore the details of a run!
154154
Congratulations! You've implemented automated testing, a standard part of continuous integration, which is critical to successful DevOps. Automating these processes ensures consistency and reduces the workload required for developers and administrators. You have created a workflow to run tests on any new code for your codebase. Let's explore [context with GitHub Copilot chat][walkthrough-next].
155155

156156
### Resources
157+
157158
- [GitHub Actions][github-actions]
158159
- [GitHub Actions Marketplace][actions-marketplace]
159160
- [About continuous integration][about-ci]

content/full-day/5-context.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,3 @@ Congratulations! You've explored context in GitHub Copilot, which is key to gene
127127
[walkthrough-codespaces]: ./3-codespaces.mdvisualstudio.com/docs/copilot/copilot-chat
128128
[walkthrough-next]: 6-code.md
129129
[walkthrough-previous]: 4-testing.md
130-

0 commit comments

Comments
 (0)