Conversation
|
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
| { | ||
| $PAT = $DestinationPAT | ||
| if($NULL -ne $SourcePAT) { $PAT = $SourcePAT } | ||
| $sourceSecurePassword = ConvertTo-SecureString -String $PAT -AsPlainText -Force |
Check failure
Code scanning / PSScriptAnalyzer
File 'Migrate-Packages.psm1' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead.
| $sourceCredential = New-Object -TypeName pscredential -ArgumentList 'PackageMigration', $sourceSecurePassword | ||
| } | ||
|
|
||
| $destinationSecurePassword = ConvertTo-SecureString -String $DestinationPAT -AsPlainText -Force |
Check failure
Code scanning / PSScriptAnalyzer
File 'Migrate-Packages.psm1' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead.
* Assurant - cleanup and add add helper scripts and read-me markdown * Assurant - cleanup and add read-me markdown * Assurant - cleanup text in file * Assurant - Review fixes --------- Co-authored-by: JohnEvans <john.evans@intellitect.com>
* Assurant - cleanup and add add helper scripts and read-me markdown * Assurant - cleanup and add read-me markdown * Assurant - cleanup text in file * Assurant - Review fixes --------- Co-authored-by: JohnEvans <john.evans@intellitect.com>
Summary:
This is a comprehensive update to add new functionality to existing PowerShell migration scripts as well as new scripts for previously unsupported Azure DevOps component migration. Direct integration with the Naked Agility Azure DevOps Migration Tools and the PowerShell migration scripts allow for a full Azure DevOps project migration using the Azure DevOps Migration Tools for migrating components that it supports and individual PowerShell scripts for components that it does not support.