|
1 | 1 | ---
|
2 | 2 |
|
3 |
| -### REQUIRED |
4 |
| -# The namespace of the collection. This can be a company/brand/organization or product namespace under which all |
5 |
| -# content lives. May only contain alphanumeric lowercase characters and underscores. Namespaces cannot start with |
6 |
| -# underscores or numbers and cannot contain consecutive underscores |
7 | 3 | namespace: nofusscomputing
|
8 | 4 |
|
9 |
| -# The name of the collection. Has the same character restrictions as 'namespace' |
10 | 5 | name: git_events
|
11 | 6 |
|
12 |
| -# The version of the collection. Must be compatible with semantic versioning |
13 | 7 | version: 0.0.1
|
14 | 8 |
|
15 |
| -# The path to the Markdown (.md) readme file. This path is relative to the root of the collection |
16 | 9 | readme: README.md
|
17 | 10 |
|
18 |
| -# A list of the collection's content authors. Can be just the name or in the format 'Full Name <email> (url) |
19 |
| -# @nicks:irc/im.site#channel' |
20 | 11 | authors:
|
21 | 12 | - No Fuss Computing
|
22 | 13 |
|
23 |
| -### OPTIONAL but strongly recommended |
24 |
| -# A short summary description of the collection |
25 | 14 | description: Git[ea/hub] Problem matcher parser with PR Code Review
|
26 |
| - |
27 |
| -# Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only |
28 |
| -# accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file' |
29 | 15 | license:
|
30 | 16 | - MIT
|
31 | 17 |
|
32 |
| -# The path to the license file for the collection. This path is relative to the root of the collection. This key is |
33 |
| -# mutually exclusive with 'license' |
34 | 18 | license_file: LICENCE
|
35 | 19 |
|
36 |
| -# A list of tags you want to associate with the collection for indexing/searching. A tag name has the same character |
37 |
| -# requirements as 'namespace' and 'name' |
38 | 20 | tags:
|
39 | 21 | - ci
|
40 | 22 | - event
|
41 | 23 | - rulebook
|
42 | 24 | - tools
|
43 | 25 |
|
44 |
| -# Collections that this collection requires to be installed for it to be usable. The key of the dict is the |
45 |
| -# collection label 'namespace.name'. The value is a version range |
46 |
| -# L(specifiers,https://python-semanticversion.readthedocs.io/en/latest/#requirement-specification). Multiple version |
47 |
| -# range specifiers can be set and are separated by ',' |
48 | 26 | dependencies: {}
|
49 | 27 |
|
50 |
| -# The URL of the originating SCM repository |
51 | 28 | repository: https://nofusscomputing.com/git/ansible-collections/git-events
|
52 | 29 |
|
53 |
| -# The URL to any online docs |
54 | 30 | documentation: https://nofusscomputing.com/git/ansible-collections/git-events
|
55 | 31 |
|
56 |
| -# The URL to the homepage of the collection/project |
57 | 32 | homepage: https://nofusscomputing.com/git/ansible-collections/git-events
|
58 | 33 |
|
59 |
| -# The URL to the collection issue tracker |
60 | 34 | issues: https://nofusscomputing.com/git/ansible-collections/git-events/issues
|
61 | 35 |
|
62 |
| -# A list of file glob-like patterns used to filter any files or directories that should not be included in the build |
63 |
| -# artifact. A pattern is matched from the relative path of the file or directory of the collection directory. This |
64 |
| -# uses 'fnmatch' to match the files or directories. Some directories and files like 'galaxy.yml', '*.pyc', '*.retry', |
65 |
| -# and '.git' are always filtered. Mutually exclusive with 'manifest' |
66 | 36 | build_ignore: [
|
67 | 37 | '.ansible',
|
68 | 38 | artifacts/,
|
| 39 | + '.cz.yaml', |
| 40 | + '.dockerignore', |
| 41 | + 'dockerfile', |
69 | 42 | '.git',
|
70 | 43 | 'galaxy.yml',
|
71 | 44 | '*.tmp.*'
|
72 | 45 |
|
73 | 46 | ]
|
74 |
| -# A dict controlling use of manifest directives used in building the collection artifact. The key 'directives' is a |
75 |
| -# list of MANIFEST.in style |
76 |
| -# L(directives,https://packaging.python.org/en/latest/guides/using-manifest-in/#manifest-in-commands). The key |
77 |
| -# 'omit_default_directives' is a boolean that controls whether the default directives are used. Mutually exclusive |
78 |
| -# with 'build_ignore' |
79 |
| -# manifest: null |
0 commit comments