Skip to content

Commit 243669c

Browse files
🩹 [Patch]: Workflow updates and folder restructuring (#39)
This PR updates the workflow configuration and restructures the source folder layout for consistency with other PSModule actions. ## Changes ### Workflow Updates - Renamed `Auto-Release.yml` to `Release.yml` for consistency - Updated workflow to use `PSModule/Release-GHRepository@v2.0.1` (replacing deprecated `Auto-Release` action) - Added path filters to Release workflow to only trigger on changes to `action.yml` and `src/**` - Disabled JSCPD validation in Linter workflow ### Folder Restructuring - Renamed `scripts/` folder to `src/` for consistency with other PSModule actions - Updated `action.yml` to reference the new `src/main.ps1` path ### Removed Files - Removed deprecated `.github/release.yml` (release notes configuration) - Removed `.github/linters/.jscpd.json` (JSCPD linter configuration) ## Impact - No functional changes to the action itself - Improves consistency across PSModule organization repositories - Updates to newer release workflow action
1 parent 51affc5 commit 243669c

File tree

7 files changed

+10
-34
lines changed

7 files changed

+10
-34
lines changed

.github/linters/.jscpd.json

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

.github/release.yml

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

.github/workflows/Linter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
env:
3030
GITHUB_TOKEN: ${{ github.token }}
3131
VALIDATE_BIOME_FORMAT: false
32+
VALIDATE_JSCPD: false
3233
VALIDATE_JSON_PRETTIER: false
3334
VALIDATE_MARKDOWN_PRETTIER: false
3435
VALIDATE_YAML_PRETTIER: false
Lines changed: 8 additions & 5 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,13 +25,13 @@ 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
34-
uses: PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 # v1.9.5
36+
- name: Release
37+
uses: PSModule/Release-GHRepository@88c70461c8f16cc09682005bcf3b7fca4dd8dc1a # v2.0.1

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ runs:
2929
working-directory: ${{ inputs.WorkingDirectory }}
3030
run: |
3131
# Build-PSModuleDocumentation
32-
${{ github.action_path }}/scripts/main.ps1
32+
${{ github.action_path }}/src/main.ps1
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)