Skip to content

Commit d1d317e

Browse files
authored
Merge pull request #238 from justwriteclick/build
Fix missing images; label CODEOWNERS file examples
2 parents 4227695 + ae67d3c commit d1d317e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

_learn/12-ssg-performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Static Site Generator performance considerations"
33
layout: learn
44
image:
55
path: /images/learn/ssg-performance.png
6-
thumbnail: /images/learn/ssg-performance-400×225.png
6+
thumbnail: /images/learn/ssg-performance-400x225.png
77
---
88

99
When you start building large documentation sites, or gluing together multiple documentation sets, you might look for performance gains in the build time. Having smaller doc sites helps with this, so that you can build with your static site generator systems in parallel, but also look for incremental builds or ways to measure build times to look for areas where the build is slowed down and then find a root cause for the slower performance.

_posts/articles/2023-10-01-protecting-codeowners-file.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ A `CODEOWNERS` file can be stored in a directory, or in the `.github` folder, wh
2121

2222
A straightforward example involves protecting the `docs` folder in the `main` branch, where the `main` branch is the branch used to publish the documentation. In this example, the org name is `justwriteclick` and the username is `annegentle`. You would name the file `CODEOWNERS` and store it in a `docs` directory.
2323

24+
Example `CODEOWNERS` file:
2425
```
2526
@justwriteclick/annegentle
2627
```
@@ -31,8 +32,9 @@ Then, make sure that the branch is protected using the repository's **Setting**
3132

3233
<img src="../../images/branch-protection-rule.png" alt="GitHub Branch protection rules settings.">
3334

34-
To see an example of this setup, look at the Microsoft 365 community documentation repository at https://github.com/MicrosoftDocs/microsoft-365-community/. The `CODEOWNERS` file contains a team name, `@microsoftdocs/officedocs-admin`, and those team members can review and merge the list of documents in the `CODEOWNERS` file. The documents contain configuration information as well as the `CODEOWNERS` file itself.
35+
To see an example of this setup, look at the Microsoft 365 community documentation repository at [https://github.com/MicrosoftDocs/microsoft-365-community/](https://github.com/MicrosoftDocs/microsoft-365-community/). The `CODEOWNERS` file contains a team name, `@microsoftdocs/officedocs-admin`, and those team members can review and merge the list of documents in the `CODEOWNERS` file. The documents contain configuration information as well as the `CODEOWNERS` file itself.
3536

37+
Example `CODEOWNERS` file from MicrosoftDocs:
3638
```
3739
docfx.json @microsoftdocs/officedocs-admin
3840
.openpublishing.build.ps1 @microsoftdocs/officedocs-admin

0 commit comments

Comments
 (0)