triggers.yaml 1.7 KB
Newer Older
M
michaelawyu 已提交
1 2 3 4 5 6
# 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.
7
# sync.py will use this value to build directories in content/ and vault/.
M
michaelawyu 已提交
8 9 10 11
component: Triggers
# The order of the component.
displayOrder: 1
# The GitHub repository where documentation resides.
12
repository: https://github.com/tektoncd/triggers
M
michaelawyu 已提交
13 14
# The directory in the GitHub repository where contents reside.
docDirectory: docs
15 16
# The link to the GitHub tag page.
archive: https://github.com/tektoncd/triggers/tags
M
michaelawyu 已提交
17 18 19 20 21 22
# 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.
23
- name: master
M
michaelawyu 已提交
24 25
  # The name to display on tekton.dev.
  # helper.py will use this value in the version switcher and other places.
26
  displayName: master
M
michaelawyu 已提交
27 28 29
  # Key-value pairs of files to sync, where the key is the original filename
  # and the value is the new filename.
  files:
A
Andrea Frittoli 已提交
30 31 32 33 34 35 36 37 38 39
    README.md: _index.md
    eventlisteners.md: eventlisteners.md
    exposing-eventlisteners.md: exposing-eventlisteners.md
    install.md: install.md
    triggerbindings.md: triggerbindings.md
    triggertemplates.md: triggertemplates.md
    clustertriggerbindings.md: clustertriggerbindings.md
    cel_expressions.md: cel_expressions.md
    getting-started/create-ingress.yaml: create-ingress.yaml
    getting-started/create-webhook.yaml: create-webhook.yaml