-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Updating Checkout Step to v4 ( Fixes #191 )
Updating workflow
- Loading branch information
StartAutomating
authored and
StartAutomating
committed
Sep 15, 2024
1 parent
374e6af
commit d20be0a
Showing
1 changed file
with
12 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,49 @@ | ||
Write-GitHubDebug | ||
----------------- | ||
|
||
### Synopsis | ||
Writes a Git Warning | ||
|
||
--- | ||
|
||
### Description | ||
|
||
Writes an GitHub Workflow Warning | ||
|
||
--- | ||
|
||
### Related Links | ||
* [Write-GitHubError](Write-GitHubError.md) | ||
|
||
|
||
|
||
* [https://docs.github.com/en/actions/reference/workflow-commands-for-GitHubhub-actions](https://docs.github.com/en/actions/reference/workflow-commands-for-GitHubhub-actions) | ||
|
||
|
||
|
||
--- | ||
|
||
### Examples | ||
#### EXAMPLE 1 | ||
> EXAMPLE 1 | ||
```PowerShell | ||
Write-GitHubDebug "Debugging" | ||
``` | ||
|
||
--- | ||
|
||
### Parameters | ||
#### **Message** | ||
|
||
The Debug message. | ||
|
||
|
||
|
||
> **Type**: ```[String]``` | ||
> **Required**: true | ||
> **Position**: 1 | ||
> **PipelineInput**:true (ByPropertyName) | ||
|
||
|Type |Required|Position|PipelineInput | | ||
|----------|--------|--------|---------------------| | ||
|`[String]`|true |1 |true (ByPropertyName)| | ||
|
||
--- | ||
|
||
### Outputs | ||
* [String](https://learn.microsoft.com/en-us/dotnet/api/System.String) | ||
|
||
|
||
|
||
|
||
--- | ||
|
||
### Syntax | ||
```PowerShell | ||
Write-GitHubDebug [-Message] <String> [<CommonParameters>] | ||
``` | ||
--- |