Skip to content

Commit 500d5d2

Browse files
🩹 [Feature]: Add release workflow and restructure script paths for GitHub Action
1 parent e827bea commit 500d5d2

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: Auto-Release
1+
name: Release
22

3-
run-name: "Auto-Release - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
3+
run-name: "Release - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
44

55
on:
66
pull_request:
@@ -12,6 +12,9 @@ on:
1212
- reopened
1313
- synchronize
1414
- labeled
15+
paths:
16+
- 'action.yml'
17+
- 'src/**'
1518

1619
concurrency:
1720
group: ${{ github.workflow }}-${{ github.ref }}
@@ -22,15 +25,15 @@ permissions:
2225
pull-requests: write # Required to create comments on the PRs
2326

2427
jobs:
25-
Auto-Release:
28+
Release:
2629
runs-on: ubuntu-latest
2730
steps:
2831
- name: Checkout Code
2932
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3033
with:
3134
persist-credentials: false
3235

33-
- name: Auto-Release
36+
- name: Release
3437
uses: PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 # v1.9.5
3538
env:
3639
GITHUB_TOKEN: ${{ github.token }}

‎action.yml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ runs:
9999
$DebugPreference = $env:PSMODULE_GITHUB_SCRIPT_INPUT_Debug -eq 'true' ? 'Continue' : 'SilentlyContinue'
100100
$VerbosePreference = $env:PSMODULE_GITHUB_SCRIPT_INPUT_Verbose -eq 'true' ? 'Continue' : 'SilentlyContinue'
101101
try {
102-
${{ github.action_path }}/scripts/init.ps1
103-
${{ github.action_path }}/scripts/info.ps1
102+
${{ github.action_path }}/src/init.ps1
103+
${{ github.action_path }}/src/info.ps1
104104
${{ inputs.Script }}
105-
${{ github.action_path }}/scripts/outputs.ps1
105+
${{ github.action_path }}/src/outputs.ps1
106106
}
107107
finally {
108-
${{ github.action_path }}/scripts/clean.ps1
108+
${{ github.action_path }}/src/clean.ps1
109109
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)