pipelines.yaml 2.3 KB
Newer Older
M
michaelawyu 已提交
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
# 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.
# helper.py will use this value to build directories in content/ and vault/.
component: Pipelines
# The order of the component.
displayOrder: 0
# The GitHub repository where documentation resides.
repository: https://github.com/tektoncd/pipeline
# The directory in the GitHub repository where contents reside.
docDirectory: docs
# 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.
tags:
  # The name of the tag in the GitHub repository.
- name: v0.9.1
  # The name to display on tekton.dev.
  # helper.py will use this value in the version switcher and other places.
  displayName: v0.9.x
  # 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
  - auth.md: auth.md
  - conditions.md: conditions.md
  - container-contract.md: container-contract.md
  - labels.md: labels.md
  - logs.md: logs.md
  - pipelineruns.md: pipelineruns.md
  - pipelines.md: pipelines.md
  - resources.md: resources.md
  - taskruns.md: taskruns.md
  - tasks.md: tasks.md
#- name: v0.9.1
#  displayName: v0.8.x
#  files:
#  - README.md: _index.md
#  - auth.md: auth.md
#  - conditions.md: conditions.md
#  - container-contract.md: container-contract.md
#  - labels.md: labels.md
#  - logs.md: logs.md
#  - pipelineruns.md: pipelineruns.md
#  - pipelines.md: pipelines.md
#  - resources.md: resources.md
#  - taskruns.md: taskruns.md
#  - tasks.md: tasks.md
#- name: v0.9.1
#  displayName: v0.7.x
#  files:
#  - README.md: _index.md
#  - auth.md: auth.md
#  - conditions.md: conditions.md
#  - container-contract.md: container-contract.md
#  - labels.md: labels.md
#  - logs.md: logs.md
#  - pipelineruns.md: pipelineruns.md
#  - pipelines.md: pipelines.md
#  - resources.md: resources.md
#  - taskruns.md: taskruns.md
#  - tasks.md: tasks.md
# The link to the GitHub tag page.
archive: https://github.com/tektoncd/pipeline/tags