Skip to content

Commit 0d7bdab

Browse files
docs: update tables for clarity in pipeline configuration and framework test IDs
1 parent e4175f8 commit 0d7bdab

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/content/Modules/Process-PSModule/guides/configuring-the-pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The workflow can automatically generate GitHub release names and notes from your
119119
Three parameters control this behavior:
120120

121121
| Parameter | Description |
122-
|-----------|-------------|
122+
| ----------- | ------------- |
123123
| `UsePRTitleAsReleaseName` | Use the PR title as the GitHub release name instead of the version string |
124124
| `UsePRBodyAsReleaseNotes` | Use the PR body as the release notes content |
125125
| `UsePRTitleAsNotesHeading` | Prepend PR title as H1 heading with PR number link before the body |

docs/content/Modules/Process-PSModule/reference/framework-test-ids.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Run by the [Test source code](pipeline-stages.md#test-source-code) job against f
1515
[PSModule - SourceCode tests](https://github.com/PSModule/Process-PSModule/blob/main/scripts/tests/SourceCode/PSModule/PSModule.Tests.ps1).
1616

1717
| ID | Category | Description | Example skip comment |
18-
|----|----------|-------------|----------------------|
18+
| ---- | ---------- | ------------- | ---------------------- |
1919
| `NumberOfProcessors` | General | Should use `[System.Environment]::ProcessorCount` instead of `$env:NUMBER_OF_PROCESSORS`. | `#SkipTest:NumberOfProcessors:Legacy code compatibility required` |
2020
| `Verbose` | General | Should not pass `-Verbose` to other commands (which would override user preference), unless explicitly disabled with `-Verbose:$false`. | `#SkipTest:Verbose:Required for debugging output` |
2121
| `OutNull` | General | Should use `$null = ...` instead of piping output to `Out-Null`. | `#SkipTest:OutNull:Pipeline processing required` |

docs/content/Modules/Process-PSModule/specification/spec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Scenario: Compute the next version from the PR label
9191
Given a pull request with the label "Minor"
9292
When the PR is merged to main and the current version is v1.2.3
9393
Then the new version is computed as v1.3.0
94-
94+
9595
Scenario: Reject ambiguous version labels
9696
Given a pull request with both "Major" and "Minor" labels
9797
When the merge is attempted
@@ -118,7 +118,7 @@ Scenario: Publish a prerelease version
118118
When the PR runs the pipeline
119119
Then a prerelease version is published (e.g., v1.2.3-pr.1.N)
120120
And it is available for testing before the PR is merged
121-
121+
122122
Scenario: Promote a prerelease to stable
123123
Given a prerelease PR that is merged to main with a version label
124124
When the PR is merged

0 commit comments

Comments
 (0)