Skip to content

Commit 76f1821

Browse files
🩹 [Patch]: Update descriptions for Debug and Verbose inputs to clarify their scope in the action
1 parent 3682fa1 commit 76f1821

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

‎README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ To get started with your own GitHub PowerShell based action, [create a new repos
1515
| `Token` | Log in using an Installation Access Token (IAT). | false | `${{ github.token }}` |
1616
| `ClientID` | Log in using a GitHub App, with the App's Client ID and Private Key. | false | |
1717
| `PrivateKey` | Log in using a GitHub App, with the App's Client ID and Private Key. | false | |
18-
| `Debug` | Enable debug output. | false | `'false'` |
19-
| `Verbose` | Enable verbose output. | false | `'false'` |
18+
| `Debug` | Enable debug output for the whole action. | false | `'false'` |
19+
| `Verbose` | Enable verbose output for the whole action. | false | `'false'` |
2020
| `Version` | Specifies the exact version of the GitHub module to install. | false | |
2121
| `Prerelease` | Allow prerelease versions if available. | false | `'false'` |
2222
| `ErrorView` | Configure the PowerShell `$ErrorView` variable. You can use full names ('NormalView', 'CategoryView', 'ConciseView', 'DetailedView'). It matches on partials. | false | `'NormalView'` |

‎action.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ inputs:
2424
description: Log in using a GitHub App, using the App's Client ID and Private Key.
2525
required: false
2626
Debug:
27-
description: Enable debug output.
27+
description: Enable debug output for the whole action.
2828
required: false
2929
default: 'false'
3030
Verbose:
31-
description: Enable verbose output.
31+
description: Enable verbose output for the whole action.
3232
required: false
3333
default: 'false'
3434
Version:

0 commit comments

Comments
 (0)