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

[DOCS] Add an example for an expansion convention for changed files #2798

Open
BernieWhite opened this issue Mar 8, 2025 · 0 comments
Open
Labels
documentation Improvements or additions to documentation

Comments

@BernieWhite
Copy link
Member

URL

https://microsoft.github.io/PSRule/v3/creating-your-pipeline

How could the documentation be improved?

Add an example showing how to expand/ explode the change set when the file types are complex like ARM and Bicep.

Example 1:

Export-PSRuleConvention 'AddModuleFiles' -Initialize {
    Write-Host "Initializing AddModuleFiles convention"

    # Get the change file set for any bicep files.
    foreach ($inputFile in $PSRule.Repository.GetChangedFiles().WithExtension('.bicep')) {
        # Calculate the module path, modules are expected to be under modules/<moduleName>/v<version>
        # Tests are under modules/<moduleName>/v<version>/.tests/main.tests.bicep
        $modulePath = $inputFile.AsFileInfo().Directory;
        while (!$modulePath.Name.StartsWith('v')) {
            $modulePath = $modulePath.Parent;
        }
        $moduleVersion = $modulePath.Name;
        $moduleName = $modulePath.Parent.Name;

        # Add tests
        Write-Host "Adding module tests for $moduleName/$moduleVersion";

        if (!(Test-Path "$($modulePath.FullName)/.tests/main.tests.bicep")) {
            Write-Warning "No tests found for $moduleName/$moduleVersion";
        }
        else {
            $PSRule.Input.Add($modulePath.FullName + "/.tests/main.tests.bicep");
        }

        # Add matching docs
        $PSRule.Input.Add("docs/modules/$moduleName-$moduleVersion/**");
    }
}

Example 2:

Export-PSRuleConvention 'AddParams' -Initialize {
    Write-Verbose "Initializing Params convention"

    # If a deployment, test through parameter files.
    foreach ($inputFile in $PSRule.Repository.GetChangedFiles().WithinPath("deployments/").WithExtension('.bicep')) {

        $paramFiles = $inputFile.DirectoryName + "/*.bicepparam"
        Write-Verbose "Adding input file: $paramFiles"

        $PSRule.Input.Add($paramFiles);
    }
}

Additional context

No response

@BernieWhite BernieWhite added documentation Improvements or additions to documentation Needs: Triage 🔍 Needs attention from the team. and removed documentation Improvements or additions to documentation Needs: Triage 🔍 Needs attention from the team. labels Mar 8, 2025
@BernieWhite BernieWhite changed the title [DOCS] Add an example for a expansion convention for changes files [DOCS] Add an example for an expansion convention for changed files Mar 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant