Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update clone instructions in README and issue templates #11478

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/00-bug.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "🐛 Report a documentation issue"
description: >-
Report an issue with current documentation.
Note: You can clone the repository using `gh repo clone MicrosoftDocs/PowerShell-Docs`.
labels:
- issue-doc-bug
- needs-triage
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/01-article.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "💡 Suggest a new document or idea"
description: >-
Suggest a new document or major rewrite of an existing one.
Note: You can clone the repository using `gh repo clone MicrosoftDocs/PowerShell-Docs`.
labels:
- issue-doc-idea
- needs-triage
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/02-quality.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "🦾 Commit to a Quality Contribution"
description: >-
File an issue to take part in the PowerShell Docs Quality Contributions project.
Note: You can clone the repository using `gh repo clone MicrosoftDocs/PowerShell-Docs`.
title: "Quality: "
labels:
- project-quality
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/03-change.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "🛠 Document a product change"
description: >-
Request documentation for a new or updated feature, cmdlet, parameter, or behavior.
Note: You can clone the repository using `gh repo clone MicrosoftDocs/PowerShell-Docs`.
labels:
- issue-doc-idea
- needs-triage
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/04-customer-feedback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: "Feedback"
description: >-
⛔ This template is intended for use by the feedback control on the bottom of every page on the
live site. If you aren't using the feedback control, choose one of the other templates.⛔
Note: You can clone the repository using `gh repo clone MicrosoftDocs/PowerShell-Docs`.
labels:
- "needs-triage"
body:
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ This project has adopted the [Microsoft Open Source Code of Conduct][04].
The following list describes the main folders in this repository.

- `.github` - contains configuration settings used by GitHub for this repository
- `.github/ISSUE_TEMPLATE` - contains multiple issue templates
- `.vscode` - contains configuration settings and recommended extensions for Visual Studio Code (VS
Code)
- `assets` - contains downloadable files linked in the documentation
Expand Down Expand Up @@ -57,6 +58,14 @@ The following list describes the main folders in this repository.
> site as well as the updateable help used by PowerShell. The articles in the `docs-conceptual`
> folder are only published to the Docs website.

## Cloning the Repository

To clone the repository, use the following command:

```sh
gh repo clone MicrosoftDocs/PowerShell-Docs
```

## Contributing

We welcome public contributions into this repository via pull requests into the _main_ branch.
Expand Down
Loading