dashboard.yaml 1.7 KB
Newer Older
A
Alan Greene 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
# Each YAML file under sync/ configures how sync/sync.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: Dashboard
# The GitHub repository where documentation resides.
repository: https://github.com/tektoncd/dashboard
# The link to the GitHub tag page.
archive: https://github.com/tektoncd/dashboard/tags
# The tags (versions) of contents to sync.
# Note that sync.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: vX.Y.Z
#   displayName: vX.Y.Z
#   folders:
#     docs:
#       target: ''             # optional, default value ''
#       index: README.md       # optional, if _index.md exists
#       include: ['*.md']      # optional, default value ['*']
#       exclude: ['not_in.md'] # optional, default value []
#       header: <dict>         # optional, no header added if not set
#         See https://www.docsy.dev/docs/adding-content/navigation/#section-menu
tags:
A
Alan Greene 已提交
29 30 31 32 33 34
- name: release-v0.27.x
  displayName: v0.27.x
  folders:
    docs:
      index: README.md
      include: ['*.jpg', '*.md', '*.svg']
A
Alan Greene 已提交
35 36 37 38 39 40 41 42 43 44 45 46
- name: release-v0.26.x
  displayName: v0.26.x
  folders:
    docs:
      index: README.md
      include: ['*.jpg', '*.md', '*.svg']
- name: main
  displayName: main
  folders:
    docs:
      index: README.md
      include: ['*.jpg', '*.md', '*.svg']