Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PSModule/Initialize-PSModule
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.20
Choose a base ref
...
head repository: PSModule/Initialize-PSModule
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1
Choose a head ref
  • 5 commits
  • 4 files changed
  • 1 contributor

Commits on Feb 28, 2025

  1. 🩹 [Patch]: Add WorkingDirectory input to action configuration and REA…

    …DME (#31)
    
    ## Description
    
    This pull request introduces a new input parameter to specify the
    working directory for the script execution in the PSModule framework.
    The changes are reflected in the documentation and the action
    configuration file.
    
    ### Documentation Update
    
    * `README.md`:
    * Added a description for the new `WorkingDirectory` parameter,
    specifying its default value as `${{ github.workspace }}`.
    
    ### Action Configuration
    
    * `action.yml`:
    * Introduced the `WorkingDirectory` input parameter with a description,
    default value, and its inclusion in the `runs` section to pass the value
    to the script.
    
    ## Type of change
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [ ] 📖 [Docs]
    - [ ] 🪲 [Fix]
    - [x] 🩹 [Patch]
    - [ ] ⚠️ [Security fix]
    - [ ] 🚀 [Feature]
    - [ ] 🌟 [Breaking change]
    
    ## Checklist
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [x] I have performed a self-review of my own code
    - [x] I have commented my code, particularly in hard-to-understand areas
    MariusStorhaug authored Feb 28, 2025
    Configuration menu
    Copy the full SHA
    41e8d81 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2025

  1. 🩹 [Patch]: Fix path separator in action script execution (#32)

    ## Description
    
    This pull request includes a minor change to the `action.yml` file. The
    change updates the path format for the script execution from backslashes
    to forward slashes.
    
    *
    [`action.yml`](diffhunk://#diff-1243c5424efaaa19bd8e813c5e6f6da46316e63761421b3e5f5c8ced9a36e6b6L42-R42):
    Updated the script path from `\scripts\main.ps1` to `/scripts/main.ps1`
    to use forward slashes.
    
    ## Type of change
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [ ] 📖 [Docs]
    - [x] 🪲 [Fix]
    - [ ] 🩹 [Patch]
    - [ ] ⚠️ [Security fix]
    - [ ] 🚀 [Feature]
    - [ ] 🌟 [Breaking change]
    
    ## Checklist
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [x] I have performed a self-review of my own code
    - [x] I have commented my code, particularly in hard-to-understand areas
    MariusStorhaug authored Mar 1, 2025
    Configuration menu
    Copy the full SHA
    63e7978 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2025

  1. 🩹 [Patch]: Refactor output handling in main.ps1 for improved readabil…

    …ity (#33)
    
    ## Description
    
    This pull request includes several changes to the `scripts/main.ps1`
    file to improve the readability and output formatting of the script.
    
    The most important changes include:
    
    * Removed unnecessary `Write-Output` calls that wrapped the
    `Get-PSResource` and `Get-Command` outputs.
    * Added `Out-String` to the `Format-Table` command to ensure the table
    output is properly formatted as a string.
    
    ## Type of change
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [ ] 📖 [Docs]
    - [ ] 🪲 [Fix]
    - [x] 🩹 [Patch]
    - [ ] ⚠️ [Security fix]
    - [ ] 🚀 [Feature]
    - [ ] 🌟 [Breaking change]
    
    ## Checklist
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [x] I have performed a self-review of my own code
    - [x] I have commented my code, particularly in hard-to-understand areas
    MariusStorhaug authored Mar 2, 2025
    Configuration menu
    Copy the full SHA
    aee74ed View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2025

  1. 🩹 [Patch]: Show all installed modules in summary (#34)

    ## Description
    
    This pull request includes a small change to the `scripts/main.ps1`
    file. The change simplifies the command by removing the unnecessary
    enumeration of `$requiredModules.Keys` before calling
    `Get-InstalledPSResource`.
    
    *
    [`scripts/main.ps1`](diffhunk://#diff-dc2e5a659836b1b73abb03421c567f5018c2755677c4a0aa764cb26117b68011L46-R46):
    Simplified the command by removing `$requiredModules.Keys` before
    calling `Get-InstalledPSResource`.
    
    ## Type of change
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [ ] 📖 [Docs]
    - [ ] 🪲 [Fix]
    - [x] 🩹 [Patch]
    - [ ] ⚠️ [Security fix]
    - [ ] 🚀 [Feature]
    - [ ] 🌟 [Breaking change]
    
    ## Checklist
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [x] I have performed a self-review of my own code
    - [x] I have commented my code, particularly in hard-to-understand areas
    MariusStorhaug authored Mar 7, 2025
    Configuration menu
    Copy the full SHA
    38c1a5b View commit details
    Browse the repository at this point in the history
  2. 🩹 [Patch]: Remove GITHUB_TOKEN environment variable from Auto-Release (

    …#35)
    
    ## Description
    
    This pull request includes a small change to the
    `.github/workflows/Auto-Release.yml` file. The change removes the `env`
    section which contained the `GITHUB_TOKEN` used for GitHub CLI
    authentication.
    
    *
    [`.github/workflows/Auto-Release.yml`](diffhunk://#diff-d3f6900ee5159d4bc4ba6d893e2dd8443c2691b0490d7351cffbd7a37ed8d95aL33-L34):
    Removed the `env` section with the `GITHUB_TOKEN` used for GitHub CLI
    authentication.
    
    ## Type of change
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [ ] 📖 [Docs]
    - [ ] 🪲 [Fix]
    - [x] 🩹 [Patch]
    - [ ] ⚠️ [Security fix]
    - [ ] 🚀 [Feature]
    - [ ] 🌟 [Breaking change]
    
    ## Checklist
    
    <!-- Use the check-boxes [x] on the options that are relevant. -->
    
    - [x] I have performed a self-review of my own code
    - [x] I have commented my code, particularly in hard-to-understand areas
    MariusStorhaug authored Mar 7, 2025
    Configuration menu
    Copy the full SHA
    e171163 View commit details
    Browse the repository at this point in the history
Loading