Skip to content

Commit 7d2c33c

Browse files
Rename action and update workflow to remove unnecessary inputs
1 parent b4b49e2 commit 7d2c33c

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

.github/workflows/Action-Test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,3 @@ jobs:
2727

2828
- name: Action-Test
2929
uses: ./
30-
with:
31-
working-directory: ./tests
32-
subject: PSModule

action.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
name: {{ NAME }}
2-
description: {{ DESCRIPTION }}
1+
name: Install-PSModuleHelpers
2+
description: Installs the PSModule helpers.
33
author: PSModule
44
branding:
55
icon: upload-cloud
66
color: white
77

88
inputs:
9-
subject:
10-
description: The subject to greet
11-
required: false
12-
default: World
139
Debug:
1410
description: Enable debug output.
1511
required: false
@@ -33,16 +29,14 @@ inputs:
3329
runs:
3430
using: composite
3531
steps:
36-
- name: {{ NAME }}
32+
- name: Install-PSModuleHelpers
3733
uses: PSModule/GitHub-Script@v1
38-
env:
39-
{{ ORG }}_{{ NAME }}_INPUT_subject: ${{ inputs.subject }}
4034
with:
4135
Debug: ${{ inputs.Debug }}
4236
Prerelease: ${{ inputs.Prerelease }}
4337
Verbose: ${{ inputs.Verbose }}
4438
Version: ${{ inputs.Version }}
4539
WorkingDirectory: ${{ inputs.WorkingDirectory }}
4640
Script: |
47-
# {{ NAME }}
41+
# Install-PSModuleHelpers
4842
${{ github.action_path }}/scripts/main.ps1

0 commit comments

Comments
 (0)