Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
64f6e27
Update workflow configurations
MariusStorhaug Jan 22, 2026
e20bf0d
Test: Use Get-PSModuleSettings feature branch for important file changes
MariusStorhaug Jan 23, 2026
f8324b6
Add Debug job to workflow
MariusStorhaug Jan 23, 2026
c62cc90
Add issues:write permission for PR comments
MariusStorhaug Jan 23, 2026
b3a8d40
Remove issues:write permission (not allowed by callers)
MariusStorhaug Jan 23, 2026
51bc591
Add pull-requests: write permission to Get-Settings workflow
MariusStorhaug Jan 23, 2026
94da564
Fix typo in README.md: correct "wether" to "whether" in workflow desc…
MariusStorhaug Jan 25, 2026
a2af56e
Remove JSCPD linter configuration file
MariusStorhaug Jan 25, 2026
0387b5d
Rename Auto-Release to Release-GHRepository
MariusStorhaug Jan 25, 2026
c7f8a84
Fix version comment to use patch level
MariusStorhaug Jan 25, 2026
be469e2
⬆️ Update GitHub-Script to v1.7.10
MariusStorhaug Jan 25, 2026
50c9854
Update Get-Settings workflow to use specific version of Get-PSModuleS…
MariusStorhaug Jan 27, 2026
0b403ab
Update Publish-Module workflow to use latest version of Publish-PSModule
MariusStorhaug Jan 27, 2026
150c481
🩹 [Patch]: Update supported change types and execution steps in PR pr…
MariusStorhaug Jan 27, 2026
e2ed0e5
Merge branch 'workflow-updates' of https://github.com/PSModule/Proces…
MariusStorhaug Jan 27, 2026
addb663
⬆️ Update workflow actions to latest versions across multiple files
MariusStorhaug Jan 27, 2026
89e3043
🔧 Update Publish-Module workflow to use version 2.2.2 of Publish-PSMo…
MariusStorhaug Jan 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .github/linters/.jscpd.json

This file was deleted.

34 changes: 14 additions & 20 deletions .github/prompts/PSModule.pr.prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ description: Create a pull request with a release note style description, approp

The user input to you can be provided directly by the agent or as a command argument - you **MUST** consider it before proceeding with the prompt (if not empty).

Use the GitHub MCP tools to create or update a pull request in the appropriate repository (fork or origin mode), with a structured release note style description, a title that includes an icon and change type, and labels based on the specified change type.
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description doesn't mention several significant changes in this pull request:

  1. Deletion of .github/release.yml (GitHub's automatic release notes configuration)
  2. Deletion of .github/linters/.jscpd.json (copy-paste detector configuration)
  3. Updates to .github/prompts/PSModule.pr.prompt.md (documentation for PR creation workflow)
  4. The temporary branch reference in Publish-Module.yml

The PR description should be updated to document these changes for better traceability and review context.

Copilot uses AI. Check for mistakes.

## User input

$ARGUMENTS
Expand All @@ -14,13 +16,13 @@ $ARGUMENTS

## Supported Change Types

| Type | Icon | Labels | Description |
| ----- | ---- | -------------- | ------------------------------------------ |
| Major | 🌟 | `Major` | Breaking changes that affect compatibility |
| Minor | 🚀 | `Minor` | New features or enhancements |
| Patch | 🩹 | `Patch` | Small fixes or improvements |
| Fix | 🪲 | `Fix`, `Patch` | Bugfixes |
| Docs | 📖 | `Docs` | Documentation changes only |
| Type | Icon | Labels | Description |
| ----------- | ---- | -------------- | -------------------------------------------|
| Major | 🌟 | `Major` | Breaking changes that affect compatibility |
| Minor | 🚀 | `Minor` | New features or enhancements |
| Patch | 🩹 | `Patch` | Small fixes or improvements |
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "Fix" change type is referenced in the execution steps (line 42, 145) and shown in examples (line 77), but it has been removed from the "Supported Change Types" table. This creates an inconsistency where the prompt instructs users about a change type that is no longer documented.

Either add "Fix" back to the table with its icon (🪲) and labels, or remove all references to "Fix" from the execution steps and examples.

Suggested change
| Patch | 🩹 | `Patch` | Small fixes or improvements |
| Patch | 🩹 | `Patch` | Small fixes or improvements |
| Fix | 🪲 | `Patch` | Bug fixes that resolve incorrect behavior |

Copilot uses AI. Check for mistakes.
| Docs | 📖 | `NoRelease` | Documentation changes only |
| Maintenance | ⚙️ | `NoRelease` | CI/CD, build configs, internal maintenance |

## Execution Steps

Expand All @@ -37,13 +39,13 @@ $ARGUMENTS
- If in doubt, ask the user to clarify which repository to target.

2. **Determine the change type**:
1. Parse the user input to identify the change type (Major, Minor, Patch, Fix, or Docs)
1. Parse the user input to identify the change type (Major, Minor, Patch, Fix, Docs, or Maintenance)
2. If nothing is provided, **analyze ALL changes in the branch** to infer the type:
- Run `git diff origin/main...HEAD --name-only` to get all changed files in the branch
- Read the diff content using `git diff origin/main...HEAD` to understand the nature of changes
- Categorize based on ALL changes combined, not just recent commits:
* **Maintenance**: CI/CD workflows, build configs, dependency updates, or internal tooling with no user-facing changes
* **Docs**: ONLY if ALL changes are to documentation files (*.md, docs/, .github/prompts/, etc.) with no code/functionality changes
* **Fix**: If changes specifically fix bugs without adding new features
* **Patch**: Small fixes or improvements that do not add new features
* **Minor**: New features or enhancements that do not break existing functionality
* **Major**: Changes that break backward compatibility (e.g., removing public APIs, changing method signatures)
Expand All @@ -69,11 +71,12 @@ $ARGUMENTS
- Stop if the user cannot provide either of these.

5. **Generate PR title**:
- **If issue title retrieved**: Use format `<Icon> <Issue Title>`
- **If issue title retrieved**: Use format `<Icon> [<type of change>]: <Issue Title>`
- Examples:
- `🚀 [Feature]: Add support for custom module templates`
- `🪲 [Fix]: Resolve null reference in parameter validation`
- `📖 [Docs]: Update installation guide with prerequisites`
- `⚙️ [Maintenance]: Update Release workflow and dependencies`

6. **Generate release note style description**:
- The PR description will be used automatically as the release note in an automated release
Expand Down Expand Up @@ -139,8 +142,7 @@ $ARGUMENTS
- Add labels to PR - owner/repo should be target repository, use `update_issue` (PRs are issues in GitHub API)

8. **Apply labels to the PR**:
- Add the **change type label** based on the type specified (Major, Minor, Patch, Fix, or Docs)
- For Fix type, add both `Fix` and `Patch` labels
- Add the **change type label** based on the type specified (Major, Minor, Patch, Fix, Docs, or Maintenance)
- If currently in a feature workflow phase (e.g., Planning, Implementation), also apply that phase label
- Use GitHub MCP to add labels in the **target repository** (upstream in fork mode, origin otherwise)

Expand All @@ -149,14 +151,6 @@ $ARGUMENTS
- Summarize the PR title, type, and labels applied
- If in fork mode, remind the user that the PR was created in the upstream repository

## Example usage

- `/PR` - Create a PR for the current changes
- `/PR Minor` - Create a PR for a new feature
- `/PR Fix` - Create a PR for a bugfix
- `/PR Docs` - Create a PR for documentation changes
- `/PR Major` - Create a PR for breaking changes
- `/PR Patch` - Create a PR for small improvements

## Notes

Expand Down
18 changes: 0 additions & 18 deletions .github/release.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/AfterAll-ModuleLocal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ jobs:
SETTINGS: ${{ inputs.Settings }}
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0

- name: Run AfterAll Teardown Scripts
if: always()
uses: PSModule/GitHub-Script@2010983167dc7a41bcd84cb88e698ec18eccb7ca # v1.7.8
uses: PSModule/GitHub-Script@0097f3bbe3f413f3b577b9bcc600727b0ca3201a # v1.7.10
with:
Name: AfterAll-ModuleLocal
ShowInfo: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Auto-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Auto-Release
uses: PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 # v1.9.5
uses: PSModule/Release-GHRepository@5a5165d66f485d1aad217ef34a190178b214fdcb # v2.0.2
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description states this workflow should use PSModule/Release-GHRepository@v2, but the actual change uses @5a5165d66f485d1aad217ef34a190178b214fdcb # v2.0.2 (a specific commit SHA with a v2.0.2 tag comment). While this is more secure than using just @v2, the PR description should be updated to reflect the actual version being used (v2.0.2) for accuracy.

Copilot uses AI. Check for mistakes.
with:
IncrementalPrerelease: false
4 changes: 2 additions & 2 deletions .github/workflows/BeforeAll-ModuleLocal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
Settings: ${{ inputs.Settings }}
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0

- name: Run BeforeAll Setup Scripts
uses: PSModule/GitHub-Script@2010983167dc7a41bcd84cb88e698ec18eccb7ca # v1.7.8
uses: PSModule/GitHub-Script@0097f3bbe3f413f3b577b9bcc600727b0ca3201a # v1.7.10
with:
Name: BeforeAll-ModuleLocal
ShowInfo: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Build-Docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0
Expand All @@ -30,7 +30,7 @@ jobs:
path: ${{ fromJson(inputs.Settings).WorkingDirectory }}/outputs/module

- name: Document module
uses: PSModule/Document-PSModule@51affc52831fa82500bea2a41f02abef9a9cfdc1 # v1.0.14
uses: PSModule/Document-PSModule@dc5b329f840f7803ec02d34a42ee725bca39db5f # v1.0.16
with:
Name: ${{ fromJson(inputs.Settings).Name }}
WorkingDirectory: ${{ fromJson(inputs.Settings).WorkingDirectory }}
Expand All @@ -44,7 +44,7 @@ jobs:
retention-days: 1

- name: Commit all changes
uses: PSModule/GitHub-Script@2010983167dc7a41bcd84cb88e698ec18eccb7ca # v1.7.8
uses: PSModule/GitHub-Script@0097f3bbe3f413f3b577b9bcc600727b0ca3201a # v1.7.10
with:
Debug: ${{ fromJson(inputs.Settings).Debug }}
Prerelease: ${{ fromJson(inputs.Settings).Prerelease }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Build-Module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0

- name: Build module
uses: PSModule/Build-PSModule@fe8cc14a7192066cc46cb9514659772ebde05849 # v4.0.9
uses: PSModule/Build-PSModule@869da3f28cbb5c04c6868dded0d511a40f191a59 # v4.0.12
with:
Name: ${{ fromJson(inputs.Settings).Name }}
ArtifactName: ${{ inputs.ArtifactName }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Build-Site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0

- name: Install-PSModuleHelpers
uses: PSModule/Install-PSModuleHelpers@d60d63e4be477d1ca0c67c6085101fb109bce8f1 # v1.0.6
uses: PSModule/Install-PSModuleHelpers@ed79b6e3aa8c9cd3d30ab2bf02ea6bd4687b9c74 # v1.0.7

- name: Download docs artifact
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
Expand All @@ -40,7 +40,7 @@ jobs:
pip install mkdocs-git-committers-plugin-2
- name: Structure site
uses: PSModule/GitHub-Script@2010983167dc7a41bcd84cb88e698ec18eccb7ca # v1.7.8
uses: PSModule/GitHub-Script@0097f3bbe3f413f3b577b9bcc600727b0ca3201a # v1.7.10
with:
Debug: ${{ fromJson(inputs.Settings).Debug }}
Prerelease: ${{ fromJson(inputs.Settings).Prerelease }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Get-CodeCoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get-CodeCoverage
uses: PSModule/Get-PesterCodeCoverage@a7923eefbf55b452f9b1534c5b50ca9bd192f810 # v1.0.3
uses: PSModule/Get-PesterCodeCoverage@a8280e9a8941438f8fc63a4531c3431e4d49015f # v1.0.4
id: Get-CodeCoverage
with:
CodeCoveragePercentTarget: ${{ fromJson(inputs.Settings).Test.CodeCoverage.PercentTarget }}
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/Get-Settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ on:
value: ${{ jobs.Get-Settings.outputs.Settings }}

permissions:
contents: read # to checkout the repo
contents: read # to checkout the repo
pull-requests: write # to add labels to PRs

jobs:
Get-Settings:
Expand All @@ -49,13 +50,13 @@ jobs:
Settings: ${{ steps.Get-Settings.outputs.Settings }}
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0

- name: Get-Settings
uses: PSModule/Get-PSModuleSettings@28c1805d689dc5bfcfba7489e76c34a6d33d7da8 # v1.4.0
uses: PSModule/Get-PSModuleSettings@1e96caa510babfdf44585c1d7873030b05940190 # v1.4.2
id: Get-Settings
with:
SettingsPath: ${{ inputs.SettingsPath }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Get-TestResults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get-TestResults
uses: PSModule/Get-PesterTestResults@0c1d8cde9575b192831f76e87d3f7e825a7d8ff4 # v1.0.7
uses: PSModule/Get-PesterTestResults@616387914e439d7b648e3cfaaf73542f5723ff42 # v1.0.8
id: Get-TestResults
with:
SourceCodeTestSuites: ${{ toJSON(fromJson(inputs.Settings).TestSuites.SourceCode) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Lint-Repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
Settings: ${{ inputs.Settings }}
steps:
- name: Checkout repo
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Lint-SourceCode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
include: ${{ fromJson(inputs.Settings).TestSuites.SourceCode }}
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Lint-SourceCode
uses: PSModule/Invoke-ScriptAnalyzer@0b13023a981f4c94136bba6193a9abd2d936cbc1 # v4.1.1
uses: PSModule/Invoke-ScriptAnalyzer@17bb50ef88b72e7d723e56b81d2e04f27ddc7e37 # v4.1.2
with:
Debug: ${{ fromJson(inputs.Settings).Debug }}
Prerelease: ${{ fromJson(inputs.Settings).Prerelease }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Publish-Module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
SETTINGS: ${{ inputs.Settings }}
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0

- name: Publish module
uses: PSModule/Publish-PSModule@e1b338d1266dee28c6d6218756979597c8a77b7a # v2.2.0
uses: PSModule/Publish-PSModule@2e548cfd1c68b76129fdeabc7f7caebd47e3b1c3 # v2.2.2
env:
GH_TOKEN: ${{ github.token }}
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/Test-Module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
include: ${{ fromJson(inputs.Settings).TestSuites.PSModule }}
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

Expand All @@ -63,7 +63,7 @@ jobs:
path: ${{ fromJson(inputs.Settings).WorkingDirectory }}/outputs/module

- name: Test-Module
uses: PSModule/Test-PSModule@7d94ed751a60973867e84ea8d44521e94b7c485d # v3.0.7
uses: PSModule/Test-PSModule@d4d6d1d2ac1d243ca82c9c199371533e8d2220ef # v3.0.8
with:
Name: ${{ fromJson(inputs.Settings).Name }}
Debug: ${{ fromJson(inputs.Settings).Debug }}
Expand All @@ -82,7 +82,7 @@ jobs:
include: ${{ fromJson(inputs.Settings).TestSuites.PSModule }}
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

Expand All @@ -93,7 +93,7 @@ jobs:
path: ${{ fromJson(inputs.Settings).WorkingDirectory }}/outputs/module

- name: Lint-Module
uses: PSModule/Invoke-ScriptAnalyzer@0b13023a981f4c94136bba6193a9abd2d936cbc1 # v4.1.1
uses: PSModule/Invoke-ScriptAnalyzer@17bb50ef88b72e7d723e56b81d2e04f27ddc7e37 # v4.1.2
with:
Path: outputs/module
Debug: ${{ fromJson(inputs.Settings).Debug }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Test-ModuleLocal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
include: ${{ fromJson(inputs.Settings).TestSuites.Module }}
steps:
- name: Checkout Code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0
Expand All @@ -65,7 +65,7 @@ jobs:
path: ${{ fromJson(inputs.Settings).WorkingDirectory }}/outputs/module

- name: Install-PSModuleHelpers
uses: PSModule/Install-PSModuleHelpers@d60d63e4be477d1ca0c67c6085101fb109bce8f1 # v1.0.6
uses: PSModule/Install-PSModuleHelpers@ed79b6e3aa8c9cd3d30ab2bf02ea6bd4687b9c74 # v1.0.7

- name: Import-Module
id: import-module
Expand All @@ -79,7 +79,7 @@ jobs:
"path=$path" >> $env:GITHUB_OUTPUT
- name: Test-ModuleLocal
uses: PSModule/Invoke-Pester@882994cbe1ff07c3fc8afdac52404c940f99b331 # v4.2.2
uses: PSModule/Invoke-Pester@1fcb663c0efe914e8374d78e16aa7bb907ea2434 # v4.2.3
with:
Debug: ${{ fromJson(inputs.Settings).Debug }}
Prerelease: ${{ fromJson(inputs.Settings).Prerelease }}
Expand Down
Loading
Loading