-
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
6aaf6a5
commit 4985050
Showing
1 changed file
with
27 additions
and
88 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,150 +1,89 @@ | ||
Get-ADOAreaPath | ||
--------------- | ||
|
||
### Synopsis | ||
Gets area paths | ||
|
||
--- | ||
|
||
### Description | ||
|
||
Get area paths from Azure DevOps | ||
|
||
--- | ||
|
||
### Related Links | ||
* [https://docs.microsoft.com/en-us/rest/api/azure/devops/wit/Classification%20Nodes/Get%20Classification%20Nodes?view=azure-devops-rest-5.1#get-the-root-area-tree](https://docs.microsoft.com/en-us/rest/api/azure/devops/wit/Classification%20Nodes/Get%20Classification%20Nodes?view=azure-devops-rest-5.1#get-the-root-area-tree) | ||
|
||
|
||
|
||
* [Add-ADOAreaPath](Add-ADOAreaPath.md) | ||
|
||
|
||
|
||
* [Remove-ADOAreaPath](Remove-ADOAreaPath.md) | ||
|
||
|
||
|
||
--- | ||
|
||
### Examples | ||
#### EXAMPLE 1 | ||
> EXAMPLE 1 | ||
```PowerShell | ||
Get-ADOAreaPath -Organization StartAutomating -Project PSDevOps | ||
``` | ||
|
||
--- | ||
|
||
### Parameters | ||
#### **Organization** | ||
|
||
The Organization | ||
|
||
|Type |Required|Position|PipelineInput |Aliases| | ||
|----------|--------|--------|---------------------|-------| | ||
|`[String]`|true |1 |true (ByPropertyName)|Org | | ||
|
||
|
||
> **Type**: ```[String]``` | ||
> **Required**: true | ||
> **Position**: 1 | ||
> **PipelineInput**:true (ByPropertyName) | ||
|
||
|
||
--- | ||
#### **Project** | ||
|
||
The project name or identifier. | ||
|
||
|Type |Required|Position|PipelineInput |Aliases | | ||
|----------|--------|--------|---------------------|---------| | ||
|`[String]`|true |2 |true (ByPropertyName)|ProjectID| | ||
|
||
|
||
> **Type**: ```[String]``` | ||
> **Required**: true | ||
> **Position**: 2 | ||
> **PipelineInput**:true (ByPropertyName) | ||
|
||
|
||
--- | ||
#### **AreaPath** | ||
|
||
The AreaPath | ||
|
||
|Type |Required|Position|PipelineInput | | ||
|----------|--------|--------|---------------------| | ||
|`[String]`|false |3 |true (ByPropertyName)| | ||
|
||
|
||
> **Type**: ```[String]``` | ||
> **Required**: false | ||
> **Position**: 3 | ||
> **PipelineInput**:true (ByPropertyName) | ||
|
||
|
||
--- | ||
#### **Server** | ||
|
||
The server. By default https://dev.azure.com/. | ||
To use against TFS, provide the tfs server URL (e.g. http://tfsserver:8080/tfs). | ||
|
||
|Type |Required|Position|PipelineInput | | ||
|-------|--------|--------|---------------------| | ||
|`[Uri]`|false |4 |true (ByPropertyName)| | ||
|
||
|
||
> **Type**: ```[Uri]``` | ||
> **Required**: false | ||
> **Position**: 4 | ||
> **PipelineInput**:true (ByPropertyName) | ||
|
||
|
||
--- | ||
#### **ApiVersion** | ||
|
||
The api version. By default, 2.0. | ||
If targeting TFS, this will need to change to match your server version. | ||
See: https://docs.microsoft.com/en-us/azure/devops/integrate/concepts/rest-api-versioning?view=azure-devops | ||
|
||
|Type |Required|Position|PipelineInput| | ||
|----------|--------|--------|-------------| | ||
|`[String]`|false |5 |false | | ||
|
||
|
||
> **Type**: ```[String]``` | ||
> **Required**: false | ||
> **Position**: 5 | ||
> **PipelineInput**:false | ||
|
||
|
||
--- | ||
#### **Depth** | ||
|
||
The depth of items to get. By default, one. | ||
|
||
|
||
|
||
> **Type**: ```[Int32]``` | ||
> **Required**: false | ||
> **Position**: 6 | ||
> **PipelineInput**:false | ||
|
||
|Type |Required|Position|PipelineInput| | ||
|---------|--------|--------|-------------| | ||
|`[Int32]`|false |6 |false | | ||
|
||
--- | ||
|
||
### Outputs | ||
* PSDevOps.AreaPath | ||
|
||
|
||
|
||
|
||
--- | ||
|
||
### Syntax | ||
```PowerShell | ||
Get-ADOAreaPath [-Organization] <String> [-Project] <String> [[-AreaPath] <String>] [[-Server] <Uri>] [[-ApiVersion] <String>] [[-Depth] <Int32>] [<CommonParameters>] | ||
``` | ||
--- |