vsteam icon indicating copy to clipboard operation
vsteam copied to clipboard

PowerShell module for accessing Azure DevOps Services and Azure DevOps Server (formerly VSTS or TFS)

Results 67 vsteam issues
Sort by recently updated
recently updated
newest added

Fixes #447 ## PR Checklist - [ ] [Write Help](https://github.com/DarqueWarrior/vsteam/blob/master/.github/CONTRIBUTING.md#write-help) - [ ] [Write Unit Test](https://github.com/DarqueWarrior/vsteam/blob/master/.github/CONTRIBUTING.md#write-unit-test)

### Proposal I wanted to create Add, Get, Remove, Update -VSTeamEnvironment cmdlets [API documentation](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/environments?view=azure-devops-rest-6.0) I have a preview working version of Get-VSTeamEnvironment with this syntax ```powershell Get-VSTeamEnvironment [-Id] -ProjectName ```...

enhancement
feature request

### Background Because the lack of a specific API for this, or because an unexpected behaviour of the current API , it is hard to distinguish between project scoped feeds...

feature request

### Steps to reproduce ```powershell Test-VSTeamYamlPipeline -PipelineId 21 -FilePath '.\azure-pipelines.yml' -Branch 'feature/coverage' -ProjectName 'XXXXX' ``` ### Expected behavior The job would run without error and the Branch parameter was supported...

bug

### Steps to reproduce ```powershell $build = Get-VSTeamBuild -Definitions $pipelineId -ResultFilter succeeded -Top 1 $artifacts = Get-VSTeamBuildArtifact -id $build.id Invoke-VSTeamRequest -NoProject -area resources -resource Containers -id "$($artifacts.id)/drop" -QueryString @{ itemPath...

bug

### Steps to reproduce When using `Set-VSTeamAccount` with tab completion for parameters, the `-Level` parameter does not auto-complete if it's not declared before the `-SecurePersonalAccessToken` parameter. You can still successfully...

bug

### Steps to reproduce ```powershell Just run the _Add-VSTeamWorkItem_ cmdlet with **User Story** as _WorkItemType_ parameter. ``` ### Expected behavior I expected that a new _user story_ will be created....

bug

### Proposal Being able to add Comments to WorkItems would be of great help. Using REST it needs a different Endpoint and seemingly isn't implemented yet? ### Solved Problem Automated...

enhancement
feature request

# PR Summary This PR is related to #518 Adding the below changes around the Update-VSTeamWorkItem to enable adding relations to another workitems. This could be achived using: - Update-VSTeamWorkItem:...

### Proposal I wanted to delete all disabled agents from every agent pool so, intuitively, I wrote `Get-VSTeamPool | Get-VSTeamAgent | Where {-not $_.Enabled} | Remove-VSTeamAgent` but got this error...

enhancement
feature request