Skip to content

Commit

Permalink
fix: Correct collection name in galaxy.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Mahendra Paipuri <[email protected]>
  • Loading branch information
mahendrapaipuri committed Feb 24, 2024
1 parent eb3ed2e commit f49152c
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace: mahendrapaipuri

Check failure on line 5 in galaxy.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

yaml[document-start]

Missing document start "---"

# The name of the collection. Has the same character restrictions as 'namespace'
name: ceems
name: ansible

# The version of the collection. Must be compatible with semantic versioning
version: 0.1.0

Check warning on line 11 in galaxy.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

galaxy[version-incorrect]

collection version should be greater than or equal to 1.0.0
Expand Down Expand Up @@ -48,27 +48,27 @@ tags:
dependencies: {}

# The URL of the originating SCM repository
repository: http://example.com/repository
repository: https://github.com/mahendrapaipuri/ansible

# The URL to any online docs
documentation: http://docs.example.com
documentation: http://mahendrapaipuri.github.io/ansible

# The URL to the homepage of the collection/project
homepage: http://example.com
homepage: https://github.com/mahendrapaipuri/ansible

# The URL to the collection issue tracker
issues: http://example.com/issue/tracker
issues: https://github.com/mahendrapaipuri/ansible/issues

# A list of file glob-like patterns used to filter any files or directories that should not be included in the build
# artifact. A pattern is matched from the relative path of the file or directory of the collection directory. This
# uses 'fnmatch' to match the files or directories. Some directories and files like 'galaxy.yml', '*.pyc', '*.retry',
# and '.git' are always filtered. Mutually exclusive with 'manifest'
build_ignore: []

# A dict controlling use of manifest directives used in building the collection artifact. The key 'directives' is a
# list of MANIFEST.in style
# L(directives,https://packaging.python.org/en/latest/guides/using-manifest-in/#manifest-in-commands). The key
# 'omit_default_directives' is a boolean that controls whether the default directives are used. Mutually exclusive
# with 'build_ignore'
# manifest: null

build_ignore:
- .config
- .github
- .gitignore
- changelogs
- roles/*/molecule
- tests
- '*test-requirements.txt'
- '*.tar.gz'

0 comments on commit f49152c

Please sign in to comment.