-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
963 additions
and
554 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
# Needed for publishing of examples, build worker defaults to core.autocrlf=input. | ||
# The Sampler pipeline template suggest using '* text eol=autocrlf' but that will | ||
# make some tests fail with CR/LF differences. | ||
* text eol=crlf | ||
|
||
*.mof text eol=crlf | ||
*.sh text eol=lf | ||
*.svg eol=lf | ||
|
||
# Ensure any exe files are treated as binary | ||
*.exe binary | ||
*.jpg binary | ||
*.xl* binary | ||
*.pfx binary | ||
*.png binary | ||
*.dll binary | ||
*.so binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: "Virtual PowerShell User Group #DSC channel" | ||
url: https://dsccommunity.org/community/contact/ | ||
about: "To talk to the community and maintainers of DSC Community, please visit the #DSC channel." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,49 @@ | ||
# Pull Request | ||
<!-- | ||
Thanks for submitting a Pull Request (PR) to this project. | ||
Your contribution to this project is greatly appreciated! | ||
If this is a breaking change then prefix the PR title | ||
with 'BREAKING CHANGE:', | ||
Thanks for submitting a Pull Request (PR) to this project. Your contribution to this project | ||
is greatly appreciated! | ||
If this is a breaking change, then also prefix the PR title with 'BREAKING CHANGE:', | ||
e.g. 'BREAKING CHANGE: My short description'. | ||
You may remove this comment block, and the other comment blocks, but please | ||
keep the headers and the task list. | ||
You may remove this comment block, and the other comment blocks, but please keep the headers | ||
and the task list. | ||
--> | ||
### Pull Request (PR) description | ||
|
||
#### Pull Request (PR) description | ||
|
||
<!-- | ||
Replace this comment block with a description of your PR. | ||
Also, make sure you have updated the CHANGELOG.md, see the | ||
task list below. An entry in the CHANGELOG.md is mandatory | ||
for all PRs. | ||
Replace this comment block with a description of your PR. Also, make sure you have updated the | ||
CHANGELOG.md, see the task list below. An entry in the CHANGELOG.md is mandatory for all PRs. | ||
--> | ||
|
||
#### This Pull Request (PR) fixes the following issues | ||
|
||
<!-- | ||
If this PR does not fix an open issue, replace this comment block with None. | ||
If this PR resolves one or more open issues, replace this comment block with | ||
a list of the issues using a GitHub closing keyword, e.g.: | ||
If this PR does not fix an open issue, replace this comment block with None. If this PR | ||
resolves one or more open issues, replace this comment block with a list of the issues using | ||
a GitHub closing keyword, e.g.: | ||
- Fixes #123 | ||
- Fixes #124 | ||
--> | ||
|
||
#### Task list | ||
|
||
<!-- | ||
To aid community reviewers in reviewing and merging your PR, please take | ||
the time to run through the below checklist and make sure your PR has | ||
everything updated as required. | ||
To aid community reviewers in reviewing and merging your PR, please take the time to run | ||
through the below checklist and make sure your PR has everything updated as required. | ||
Change to [x] for each task in the task list that applies to your PR. | ||
For those task that don't apply to you PR, leave those as is. | ||
Change to [x] for each task in the task list that applies to your PR. For those task that | ||
don't apply to you PR, leave those as is. | ||
--> | ||
- [ ] Added an entry to the change log under the Unreleased section of the | ||
file CHANGELOG.md. Entry should say what was changed and how that | ||
affects users (if applicable), and reference the issue being resolved | ||
(if applicable). | ||
|
||
- [ ] Added an entry to the change log under the Unreleased section of the file CHANGELOG.md. | ||
Entry should say what was changed and how that affects users (if applicable), and | ||
reference the issue being resolved (if applicable). | ||
- [ ] Documentation added/updated in README.md. | ||
- [ ] Comment-based help added/updated. | ||
- [ ] Localization strings added/updated in all localization files as appropriate. | ||
- [ ] Examples appropriately added/updated. | ||
- [ ] Unit tests added/updated. | ||
- [ ] Integration tests added/updated (where possible). | ||
- [ ] Unit tests added/updated. See [DSC Community Testing Guidelines](https://dsccommunity.org/guidelines/testing-guidelines). | ||
- [ ] Integration tests added/updated (where possible). See [DSC Community Testing Guidelines](https://dsccommunity.org/guidelines/testing-guidelines). | ||
- [ ] New/changed code adheres to [DSC Community Style Guidelines](https://dsccommunity.org/styleguidelines). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ output/ | |
!**/README.md | ||
.kitchen/ | ||
|
||
*.nupkg | ||
*.suo | ||
*.user | ||
*.coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Contributing | ||
|
||
Please check out common DSC Community [contributing guidelines](https://dsccommunity.org/guidelines/contributing). | ||
|
||
## Running the Tests | ||
|
||
If want to know how to run this module's tests you can look at the [Testing Guidelines](https://dsccommunity.org/guidelines/testing-guidelines/#running-tests) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.