Bernie White

Results 206 comments of Bernie White

@ArmaanMcleod Sure. Let's park it for now.

Requires further investigation.

An example Dockerfile. ``` FROM mcr.microsoft.com/powershell:ubuntu-16.04 SHELL ["pwsh", "-command"] RUN Install-Module -Name PSRule -AllowPrerelease -Force; RUN Import-Module -Name PSRule; ARG IMAGE_NAME=PSRule:0.2.0-ubuntu-16.04 LABEL maintainer="Bernie White" \ readme.md="https://github.com/BernieWhite/PSRule/blob/master/README.md" \ description="This Dockerfile will...

At this stage providing tooling is not required. This issue should focus on documention.

@michaeltlombardi Absolutely. That would be appreciated. If you want to start a PR, I'd suggest to add a new section to: docs/creating-your-pipeline.md after configuration.

Another thing to consider is how we handling complex relationships with changed files. While this feature may not resolve this entirely be itself. For example: With the changes files of:...

@michaeltlombardi Some of these might work with the `PSRule.Data.RepositoryInfo` object that is emitted, that can be used to check for existence of files within the repository. https://github.com/microsoft/PSRule.Rules.MSFT.OSS/blob/0fd68783b9ff0c241374a00f8c15d5233ea88e8c/src/PSRule.Rules.MSFT.OSS/MSFT.OSS.Rule.ps1#L4-L14

@michaeltlombardi Based on your suggestion. 1. Provide an option for PSRule to limit input files to changes files. Such as by calling `git diff --diff-filter=d --no-renames HEAD^ HEAD`. Ideally the...