AzurePipelinesToGitHubActionsConverter
                                
                                 AzurePipelinesToGitHubActionsConverter copied to clipboard
                                
                                    AzurePipelinesToGitHubActionsConverter copied to clipboard
                            
                            
                            
                        Many comments are removed as part of serialization
For example:
variables:
  #PR code 
  prId: '000'
  prName: ""PR$(prId)""
serializes without the comment, to:
env:
  prId: 000
  prName: PR${{ env.prId }}
This seems to be related to https://github.com/aaubry/YamlDotNet/issues/451