Thank you for your interest in helping PEMEncrypt grow! Below you'll find some guidelines around developing additional features and squashing bugs, including some how-to's to get started quick, general style guidelines, etc.
- Contributions are submitted, reviewed, and accepted using Github pull requests. Read this article for some details. We use the Fork and Pull model, as described there. More info can be found here: Forking Projects
- Please make sure to leave the
Allow edits from maintainers
box checked when submitting PR's so that any edits can be made by maintainers of the repo directly to the source branch and into the same PR. More info can be found here: Allowing changes to a pull request branch created from a fork
Here's the overall flow of making contributions:
- Fork the repo
- Make your edits / additions on your fork
- Push your changes back to your fork on GitHub
- Submit a pull request
- Pull request is reviewed. Any necessary edits / suggestions will be made
- Once changes are approved, the pull request is merged into the origin's master branch and deployed to the PowerShell Gallery once CI tests pass in AppVeyor
Please follow these guidelines for any content being added:
- ALL functions must...
- work in the supported PowerShell versions by this module
- work in any OS;
- any code that includes paths must build the path using OS-agnostic methods, i.e. by using
Resolve-Path
,Join-Path
andSplit-Path
- paths also need to use correct casing, as some OS's are case-sensitive in terms of paths
- any code that includes paths must build the path using OS-agnostic methods, i.e. by using
- Public functions must...
- include comment-based help (this is used to drive the Wiki updates on deployment)
- include Write-Verbose calls to describe what the function is doing (CI tests will fail the build if any don't)
- be placed in the correct APU/use-case folder in the Public sub-directory of the module path (if it's a new API/use-case, create the new folder as well)
- use
SupportsShouldProcess
if...- the function's verb is
Remove
orSet
. - it can be included on
Update
functions as well, if felt that the actions executed by the function should be guarded Get
functions should never needSupportsShouldProcess
- the function's verb is
- Every Pull Request must...
These can be added in during the pull request review process, but are nice to have if possible
- have the module version bumped appropriately in the manifest (Major for any large updates, Minor for any new functionality, Patch for any hotfixes)
- have an entry in the Changelog describing what was added, updated and/or fixed with this version number
- Please follow the same format already present
- have an entry in the ReadMe's
Most recent changes
section describing what was added, updated and/or fixed with this version number- Please follow the same format already present
- This can be copied over from the Changelog entry
For any questions, comments or concerns outside of opening an issue, please reach out:
- on the SCRT HQ Slack:
scrthq.slack.com
. Click here to get an invite! - on the SCRT HQ Discord: Click here to get an invite!
@scrthq
on the PowerShell Slack if you're on there as well!@scrthq
on Twitter