# Each YAML file under sync/ configures how helper/helper.py synchronizes # contents of various versions from its source of truth (usually a GitHub # repository of a Tekton component, such as tektoncd/pipelines) to # content/ (for the lastest version) and vault/ (for earlier versions). # The name of the component. # sync.py will use this value to build directories in content/ and vault/. component: CLI # The order of the component. displayOrder: 2 # The GitHub repository where documentation resides. repository: https://github.com/tektoncd/cli # The directory in the GitHub repository where contents reside. docDirectory: docs # The link to the GitHub tag page. archive: https://github.com/tektoncd/cli/tags # The tags (versions) of contents to sync. # Note that helper.py and related script reads tags in the order specified in # the following list; the first entry in tags will automatically become the # latest version of contents. # To add a new version, append to the list as below #- name: v0.8.2 # displayName: v0.8.x # files: # - myfiles.md: myfiles.md tags: # The name of the tag in the GitHub repository. - name: master # The name to display on tekton.dev. # helper.py will use this value in the version switcher and other places. displayName: master # Key-value pairs of files to sync, where the key is the original filename # and the value is the new filename. files: README.md: _index.md