This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meta: allow use of collections key (#244)
- Loading branch information
Showing
4 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
collections: | ||
- foo # invalid pattern | ||
galaxy_info: | ||
description: foo | ||
license: bar | ||
min_ansible_version: "2.10" | ||
platforms: | ||
- name: Fedora | ||
versions: | ||
- all |
10 changes: 10 additions & 0 deletions
10
negative_test/roles/meta_invalid_collections/meta/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
collections: | ||
- FOO.BAR # invalid pattern, need to use lowercase | ||
galaxy_info: | ||
description: foo | ||
license: bar | ||
min_ansible_version: "2.10" | ||
platforms: | ||
- name: Fedora | ||
versions: | ||
- all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
collections: | ||
- foo.bar | ||
dependencies: | ||
- name: ansible-role-foo | ||
version: "1.0" | ||
|