-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpack.yaml
More file actions
33 lines (33 loc) · 1.25 KB
/
pack.yaml
File metadata and controls
33 lines (33 loc) · 1.25 KB
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
---
# Pack reference. It can only contain lowercase letters, digits and underscores.
# This attribute is only needed if "name" attribute contains special characters.
ref: hello_st2
# User-friendly pack name. If this attribute contains spaces or any other special characters, then
# the "ref" attribute must also be specified (see above).
name: Hello StackStorm
# User-friendly pack description.
description: Simple pack containing examples of sensor, rule, and action.
# Keywords which are used when searching for packs.
keywords:
- example
- test
# Pack version which must follow semver format (<major>.<minor>.<patch> e.g. 1.0.0)
version: 0.1.0
# A list of major Python versions pack is tested with and works with.
python_versions:
- "2"
- "3"
# New in StackStorm 3.2
# Specify a list of dependency packs to install. If the pack is in StackStorm Exchange you can use
# the pack name, or you can specify a full Git repository URL. Optionally, you can specify the
# exact version, tag, or branch.
dependencies:
- core
# Name of the pack author.
author: StackStorm, Inc.
# Email of the pack author.
email: info@stackstorm.com
# Optional list of additional contributors to the pack.
contributors:
- "John Doe1 <john.doe1@gmail.com>"
- "John Doe2 <john.doe2@gmail.com>"