Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/Process-PSModule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ permissions:

jobs:
Process-PSModule:
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@v4
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@copilot/fix-169
Copy link

Copilot AI Oct 1, 2025

Choose a reason for hiding this comment

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

Using a branch reference (copilot/fix-169) instead of a version tag (v4) in production workflows is not recommended. Branch references can change unexpectedly, leading to unstable builds. Consider using a specific commit SHA or waiting for an official release tag.

Suggested change
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@copilot/fix-169
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@0123456789abcdef0123456789abcdef01234567

Copilot uses AI. Check for mistakes.
secrets: inherit
8 changes: 8 additions & 0 deletions tests/AfterAll.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Write-Host '=== AFTERALL TEARDOWN SCRIPT (Environments) EXECUTING ==='
Write-Host 'Tearing down test environment for Environments...'

# Example teardown tasks for Environments directory:
Write-Host 'Cleaning up Environments test environment...'

Write-Host 'Environments environment teardown completed successfully!'
Write-Host '=== AFTERALL TEARDOWN SCRIPT (Environments) COMPLETED ==='
8 changes: 8 additions & 0 deletions tests/BeforeAll.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Write-Host '=== BEFOREALL SETUP SCRIPT (Environments) EXECUTING ==='
Write-Host 'Setting up test environment for Environments...'

# Example setup tasks for Environments directory:
Write-Host 'Initializing Environments test environment...'

Write-Host 'Environments environment setup completed successfully!'
Write-Host '=== BEFOREALL SETUP SCRIPT (Environments) COMPLETED ==='
Loading