Skip to content

Commit ce838e8

Browse files
🩹 [Documentation]: Update default values in README.md and action.yml for clarity and consistency
1 parent 87205b8 commit ce838e8

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

‎README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ This step lets you add custom build logic to process or modify the module conten
2525

2626
## Usage
2727

28-
| Name | Description | Required | Default |
29-
| --------------------| ----------------------------------------------------------------------------------------------- | -------- | ------------------------- |
30-
| `Name` | Name of the module to process. | `false` | |
31-
| `Path` | Path to the folder where the modules are located. | `false` | `src` |
32-
| `ModulesOutputPath` | Path to the folder where the built modules are outputted. | `false` | `outputs/modules` |
33-
| `Debug` | Enable debug output. | `false` | `'false'` |
34-
| `Verbose` | Enable verbose output. | `false` | `'false'` |
35-
| `Version` | Specifies the version of the GitHub module to be installed. The value must be an exact version. | `false` | |
36-
| `Prerelease` | Allow prerelease versions if available. | `false` | `'false'` |
37-
| `WorkingDirectory` | The working directory where the script runs. | `false` | `${{ github.workspace }}` |
28+
| Name | Description | Required | Default |
29+
| --------------------| ----------------------------------------------------------------------------------------------- | -------- | ----------------- |
30+
| `Name` | Name of the module to process. | `false` | |
31+
| `Path` | Path to the folder where the modules are located. | `false` | `src` |
32+
| `ModulesOutputPath` | Path to the folder where the built modules are outputted. | `false` | `outputs/modules` |
33+
| `Debug` | Enable debug output. | `false` | `'false'` |
34+
| `Verbose` | Enable verbose output. | `false` | `'false'` |
35+
| `Version` | Specifies the version of the GitHub module to be installed. The value must be an exact version. | `false` | |
36+
| `Prerelease` | Allow prerelease versions if available. | `false` | `'false'` |
37+
| `WorkingDirectory` | The working directory where the script runs. | `false` | `'.'` |
3838

3939
## Root module
4040

‎action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ inputs:
3131
WorkingDirectory:
3232
description: The working directory where the script will run from.
3333
required: false
34-
default: ${{ github.workspace }}
34+
default: '.'
3535

3636
runs:
3737
using: composite

0 commit comments

Comments
 (0)