Commit 486bfb9
authored
Bump PSModule/Process-PSModule/.github/workflows/workflow.yml from 5.4.6 to 5.5.0 (#10)
Bumps
[PSModule/Process-PSModule/.github/workflows/workflow.yml](https://github.com/psmodule/process-psmodule)
from 5.4.6 to 5.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/psmodule/process-psmodule/releases">PSModule/Process-PSModule/.github/workflows/workflow.yml's
releases</a>.</em></p>
<blockquote>
<h2>v5.5.0</h2>
<h1>🚀 [Feature]: Release-triggering file patterns now configurable via
workflow input (<a
href="https://redirect.github.com/psmodule/process-psmodule/issues/301">#301</a>)</h1>
<p>Repositories can now control which file changes trigger build, test,
and publish stages by configuring the <code>ImportantFilePatterns</code>
workflow input or settings file property. The default patterns
(<code>^src/</code> and <code>^README\.md$</code>) remain unchanged for
backward compatibility.</p>
<ul>
<li>Fixes <a
href="https://redirect.github.com/psmodule/process-psmodule/issues/278">#278</a></li>
</ul>
<h2>New: Configurable release-triggering file patterns</h2>
<p>The <code>ImportantFilePatterns</code> input is now available on the
<code>workflow.yml</code> and <code>Get-Settings.yml</code> reusable
workflows. Pass a newline-separated list of regex patterns to override
the defaults:</p>
<pre lang="yaml"><code>jobs:
Process:
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@v5
with:
ImportantFilePatterns: |
^src/
^README\.md$
^examples/
</code></pre>
<p>To disable file-change triggering entirely, pass an empty string via
the workflow input or set an empty list in
<code>.github/PSModule.yml</code>:</p>
<pre lang="yaml"><code># In .github/PSModule.yml
ImportantFilePatterns: []
</code></pre>
<p>Resolution order: settings file → workflow input → workflow input
default values.</p>
<h2>Changed: PR comment reflects configured patterns</h2>
<p>The automated comment posted on PRs when no important files are
changed now dynamically lists the configured patterns instead of a
hardcoded table.</p>
<h2>Technical Details</h2>
<ul>
<li>Added <code>ImportantFilePatterns</code> input (type:
<code>string</code>, newline-separated) to both
<code>.github/workflows/workflow.yml</code> and
<code>.github/workflows/Get-Settings.yml</code> with explicit defaults
(<code>^src/</code> and <code>^README\.md$</code>).</li>
<li>Bumped <code>Get-PSModuleSettings</code> action reference from
<code>v1.4.4</code> to <code>v1.5.0</code> which implements the settings
file and action input support for this feature.</li>
<li>Passed <code>ImportantFilePatterns</code> input through the reusable
workflow chain to the <code>Get-PSModuleSettings</code> action
step.</li>
<li>Updated README documentation: new input in the workflow inputs
table, new "Customizing important file patterns" section with
YAML examples, updated settings file reference and example schema.</li>
</ul>
<h2>v5.4.7</h2>
<h1>🩹 [Patch]: Framework-generated code coverage no longer penalizes
module authors (<a
href="https://redirect.github.com/psmodule/process-psmodule/issues/310">#310</a>)</h1>
<p>Framework-generated boilerplate — type accelerator registration and
<code>OnRemove</code> cleanup — is now tested and covered by updated
action versions referenced in this workflow. The obsolete
<code>$IsWindows</code> PS 5.1 shim is no longer injected into built
modules. Coverage from the framework test step and the module test step
is already aggregated by Get-CodeCoverage, so module authors' coverage
percentages now reflect only the code they wrote.</p>
<ul>
<li>Fixes <a
href="https://redirect.github.com/psmodule/process-psmodule/issues/309">#309</a></li>
</ul>
<h2>Changed: Build-PSModule updated to v4.0.14</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PSModule/Process-PSModule/commit/11117919e65242d3388727819a751f74ad24ea9e"><code>1111791</code></a>
🚀 [Feature]: Release-triggering file patterns now configurable via
workflow i...</li>
<li><a
href="https://github.com/PSModule/Process-PSModule/commit/3ed96da6f3c2f95b7cd770761f5f2f348020680b"><code>3ed96da</code></a>
🩹 [Patch]: Framework-generated code coverage no longer penalizes module
autho...</li>
<li>See full diff in <a
href="https://github.com/psmodule/process-psmodule/compare/205d193f34cbbaf9992955c21d842bcf98a1859f...11117919e65242d3388727819a751f74ad24ea9e">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 8032dfc commit 486bfb9
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
0 commit comments