Skip to content

Commit 002d5db

Browse files
🩹 [Patch]: Add Prerelease input option to Action-Test workflow
1 parent 4463abf commit 002d5db

File tree

2 files changed

+6
-26
lines changed

2 files changed

+6
-26
lines changed

.github/workflows/Action-Test-Prerelease.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/Action-Test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ run-name: "Action-Test - [${{ github.event.pull_request.title }} #${{ github.eve
44

55
on:
66
workflow_dispatch:
7+
inputs:
8+
Prerelease:
9+
type: boolean
10+
default: false
11+
description: Use the prerelease version of GitHub PowerShell module.
712
pull_request:
813
schedule:
914
- cron: '0 0 * * *'
@@ -26,3 +31,4 @@ jobs:
2631
os: [ubuntu-latest, macos-latest, windows-latest]
2732
with:
2833
runs-on: ${{ matrix.os }}
34+
Prerelease: ${{ inputs.Prerelease }}

0 commit comments

Comments
 (0)