Skip to content

Commit f5c6dc9

Browse files
authored
Merge branch 'main' into patch-147
2 parents f26e355 + 800cec0 commit f5c6dc9

File tree

462 files changed

+28275
-11391
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

462 files changed

+28275
-11391
lines changed

.devcontainer/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM mcr.microsoft.com/devcontainers/base:ubuntu
2+
RUN wget https://github.com/errata-ai/vale/releases/download/v2.26.0/vale_2.26.0_Linux_64-bit.tar.gz && \
3+
tar -xvzf vale_2.26.0_Linux_64-bit.tar.gz -C bin && \
4+
export PATH=./bin:"$PATH"

.devcontainer/devcontainer.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"build": {
3+
"dockerfile": "Dockerfile"
4+
},
5+
"features": {
6+
"ghcr.io/devcontainers/features/git:1": {},
7+
"ghcr.io/devcontainers/features/github-cli:1": {},
8+
"ghcr.io/devcontainers/features/powershell:1": {
9+
"modules": "Documentarian,Documentarian.Vale,Documentarian.MicrosoftDocs,Documentarian.ModuleAuthor"
10+
}
11+
},
12+
"customizations": {
13+
"vscode": {
14+
"extensions": [
15+
"chrischinchilla.vale-vscode",
16+
"davidanson.vscode-markdownlint",
17+
"docsmsft.docs-images",
18+
"docsmsft.docs-linting",
19+
"docsmsft.docs-markdown",
20+
"docsmsft.docs-preview",
21+
"docsmsft.docs-yaml",
22+
"eamodio.gitlens",
23+
"marvhen.reflow-markdown",
24+
"ms-vscode.powershell",
25+
"ms-vscode.wordcount",
26+
"nhoizey.gremlins",
27+
"redhat.vscode-yaml",
28+
"shuworks.vscode-table-formatter",
29+
"streetsidesoftware.code-spell-checker",
30+
"tyriar.sort-lines",
31+
"usernamehw.errorlens",
32+
"wmaurer.change-case"
33+
],
34+
"settings": {
35+
"terminal.integrated.defaultProfile.linux": "pwsh",
36+
"vale.valeCLI.path": "",
37+
"vale.valeCLI.config": ""
38+
}
39+
}
40+
},
41+
"postStartCommand": "vale sync"
42+
}

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
# Declare files that will always have CRLF line endings on checkout.
1010
*.sln text eol=crlf
1111

12+
# Ensure devcontainer files are always LF
13+
.devcontainer/** eol=lf
14+
1215
# Denote all files that are truly binary and should not be modified.
1316
*.png binary
1417
*.jpg binary

.github/ISSUE_TEMPLATE/00-bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "🐛 Report a documentation issue"
22
description: >-
33
Report an issue with current documentation.
44
labels:
5-
- doc-bug
5+
- issue-doc-bug
66
- needs-triage
77
body:
88
- type: markdown

.github/ISSUE_TEMPLATE/01-article.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "💡 Suggest a new document or idea"
22
description: >-
33
Suggest a new document or major rewrite of an existing one.
44
labels:
5-
- doc-idea
5+
- issue-doc-idea
66
- needs-triage
77
body:
88
- type: checkboxes

.github/ISSUE_TEMPLATE/02-quality.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: "🦾 Commit to a Quality Contribution"
22
description: >-
33
File an issue to take part in the PowerShell Docs Quality Contributions project.
4+
labels:
5+
- project-quality
46
title: "Quality: "
57
body:
68
- type: markdown

.github/workflows/quality.issue.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,6 @@ jobs:
1919
regex: "Quality: Foo"
2020
flags: gm
2121

22-
project:
23-
name: Add to project
24-
needs: quality
25-
if: needs.quality.outputs.check == 'true'
26-
runs-on: ubuntu-latest
27-
steps:
28-
- uses: actions/add-to-project@v0.3.0
29-
with:
30-
project-url: https://github.com/orgs/MicrosoftDocs/projects/15/views/1
31-
github-token: ${{ secrets.quality_token }}
32-
3322
assign:
3423
name: Assign to author
3524
needs: quality

.github/workflows/quality.pr.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
$Check = "${{ contains(github.event.pull_request.title, 'Quality:') }}"
2626
"Check: $Check"
27-
"::set-output name=check::$Check"
27+
"check=$Check" >> $env:GITHUB_OUTPUT
2828
2929
project:
3030
name: Add pull request to project
@@ -33,7 +33,6 @@ jobs:
3333
needs.check.outputs.title == 'true'
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/add-to-project@v0.3.0
36+
- uses: actions-ecosystem/action-add-labels@v1
3737
with:
38-
project-url: https://github.com/orgs/MicrosoftDocs/projects/15/views/1
39-
github-token: ${{ secrets.quality_token }}
38+
labels: project-quality
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
11
ADCS
2+
Cmdletization
3+
Dcpromo
4+
Dedup
5+
DSRM
6+
Hotspot
7+
hotspots
8+
krbtgt
29
NTDS
10+
reoptimized
11+
rescan
12+
RODC
13+
Sysvol
14+
Unoptimization
15+
unoptimization
16+
unoptimizes
17+
unoptimize
18+
unoptimized

docset/docfx.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
"ROBOTS": "INDEX, FOLLOW",
6868
"breadcrumb_path": "/powershell/windows/bread/toc.json",
6969
"ms.prod": "w10",
70-
"ms.technology": "windows",
7170
"ms.topic": "managed-reference",
7271
"ms.author": "jgerend",
7372
"author": "JasonGerend",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy