Generating wiki with hierarchy nodes #1955
Unanswered
arulconsultant
asked this question in
Q&A
Replies: 1 comment
-
Have a look at one of my company's demo samples Living the Dream. The WIKI on this system does what I think you want, as shown below The work is done to generate the release notes and publish them using a YAML template parameters:
- name: template
type: string
- name: version
type: string
steps:
- task: XplatGenerateReleaseNotes@3
displayName: 'Generate build release notes'
inputs:
outputfile: '$(System.DefaultWorkingDirectory)/ReleaseNotes.md'
templateLocation: 'File'
templatefile: '${{parameters.template}}'
dumpPayloadToConsole: false
dumpPayloadToFile: false
replaceFile: True
getParentsAndChildren: False
getAllParents: False
getIndirectPullRequests: False
checkStage: true
- task: richardfennellBM.BM-VSTS-WIKIUpdater-Tasks.WikiUpdaterTask.WikiUpdaterTask@1
displayName: 'Git based WIKI Updater'
inputs:
repo: 'https://[email protected]/blackmarblelabs/Living%20The%20Dream/_git/Living-The-Dream.wiki'
filename: '$(System.StageName)/${{parameters.version}}.md'
dataIsFile: true
sourceFile: '$(System.DefaultWorkingDirectory)/ReleaseNotes.md'
message: 'Release documentation creation'
gitname: FabrikamRelease
gitemail: '[email protected]'
useAgentToken: true This is a fully worked sample so should show you want you need |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Any discussion links or guide to publish wiki inside hierarchial (Sub wiki like)
Beta Was this translation helpful? Give feedback.
All reactions