Skip to content

andrewalumkal/DevOpsSearchTool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

DevOpsSearchTool

Tool to search multiple keywords across your DevOps repositories and output results

Example Usage

Import the module.

Import-Module .\src\DevOpsSearchTool -Force

Run search

$AzureDevOpsPAT = "*******PersonalAccessTokenFromDevops*******"
$OrganizationName = "MyDevopsOrganization"
$InputCSVPath = "C:\Tools\SearchKeyWords.csv"
$OutputFolderPath = "C:\Tools\SearchResultsFolder"

Out-DevOpsSearchResults -InputCSVPath $InputCSVPath `
                        -OutputFolderPath $OutputFolderPath `
                        -DevOpsAccessToken $AzureDevOpsPAT `
                        -DevOpsOrganization $OrganizationName  
                        

The tool will output 4 CSV files

  • Summary of total number of hits per keyword
  • Count of results by repository
  • Raw results with project / repository / path to file
  • If there are keywords with no results, this list will be exported seperately (NoResults)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published