diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md deleted file mode 100644 index 889b83b..0000000 --- a/.github/CONTRIBUTING.md +++ /dev/null @@ -1,61 +0,0 @@ -# How to contribute - -Contributions to PowerShellBuild are highly encouraged and desired. -Below are some guidelines that will help make the process as smooth as possible. - -## Getting Started - -- Make sure you have a [GitHub account](https://github.com/signup/free) -- Submit a new issue, assuming one does not already exist. - - Clearly describe the issue including steps to reproduce when it is a bug. - - Make sure you fill in the earliest version that you know has the issue. -- Fork the repository on GitHub - -## Suggesting Enhancements - -I want to know what you think is missing from PowerShellBuild and how it can be made better. - -- When submitting an issue for an enhancement, please be as clear as possible about why you think the enhancement is needed and what the benefit of it would be. - -## Making Changes - -- From your fork of the repository, create a topic branch where work on your change will take place. -- To quickly create a topic branch based on master; `git checkout -b my_contribution master`. - Please avoid working directly on the `master` branch. -- Make commits of logical units. -- Check for unnecessary whitespace with `git diff --check` before committing. -- Please follow the prevailing code conventions in the repository. - Differences in style make the code harder to understand for everyone. -- Make sure your commit messages are in the proper format. - -``` - Add more cowbell to Get-Something.ps1 - - The functionality of Get-Something would be greatly improved if there was a little - more 'pizzazz' added to it. I propose a cowbell. Adding more cowbell has been - shown in studies to both increase one's mojo, and cement one's status - as a rock legend. -``` - -- Make sure you have added all the necessary Pester tests for your changes. -- Run _all_ Pester tests in the module to assure nothing else was accidentally broken. - -## Documentation - -I am infallible and as such my documenation needs no corectoin. -In the highly unlikely event that that is _not_ the case, commits to update or add documentation are highly apprecaited. - -## Submitting Changes - -- Push your changes to a topic branch in your fork of the repository. -- Submit a pull request to the main repository. -- Once the pull request has been reviewed and accepted, it will be merged with the master branch. -- Celebrate - -## Additional Resources - -- [General GitHub documentation](https://help.github.com/) -- [GitHub forking documentation](https://guides.github.com/activities/forking/) -- [GitHub pull request documentation](https://help.github.com/send-pull-requests/) -- [GitHub Flow guide](https://guides.github.com/introduction/flow/) -- [GitHub's guide to contributing to open source projects](https://guides.github.com/activities/contributing-to-open-source/) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index fab5004..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,36 +0,0 @@ - - -## Description - - -## Related Issue - - - - - -## Motivation and Context - - -## How Has This Been Tested? - - - - -## Screenshots (if appropriate): - -## Types of changes - -- [ ] Bug fix (non-breaking change which fixes an issue) -- [ ] New feature (non-breaking change which adds functionality) -- [ ] Breaking change (fix or feature that would cause existing functionality to change) - -## Checklist: - - -- [ ] My code follows the code style of this project. -- [ ] My change requires a change to the documentation. -- [ ] I have updated the documentation accordingly. -- [ ] I have read the **CONTRIBUTING** document. -- [ ] I have added tests to cover my changes. -- [ ] All new and existing tests passed. diff --git a/requirements.psd1 b/requirements.psd1 index b2e4c38..9f9d4b1 100755 --- a/requirements.psd1 +++ b/requirements.psd1 @@ -4,7 +4,7 @@ } BuildHelpers = '2.0.16' Pester = @{ - MinimumVersion = '5.2.2' + MinimumVersion = '5.6.1' Parameters = @{ SkipPublisherCheck = $true }