Skip to content

Commit e3dd3b7

Browse files
committed
Merge branch 'release-v1.5.0-beta.1'
Conflicts: docs/source/modules/zos_copy.rst docs/source/modules/zos_fetch.rst docs/source/modules/zos_job_output.rst docs/source/modules/zos_job_query.rst docs/source/modules/zos_job_submit.rst docs/source/modules/zos_mount.rst docs/source/modules/zos_operator.rst docs/source/plugins.rst docs/source/release_notes.rst galaxy.yml meta/ibm_zos_core_meta.yml meta/runtime.yml plugins/action/zos_copy.py plugins/action/zos_fetch.py plugins/action/zos_ping.py plugins/module_utils/job.py plugins/modules/zos_blockinfile.py plugins/modules/zos_copy.py plugins/modules/zos_fetch.py plugins/modules/zos_job_output.py plugins/modules/zos_job_query.py plugins/modules/zos_job_submit.py plugins/modules/zos_mount.py plugins/modules/zos_operator.py plugins/modules/zos_operator_action_query.py tests/functional/modules/test_zos_copy_func.py tests/functional/modules/test_zos_encode_func.py tests/functional/modules/test_zos_fetch_func.py tests/functional/modules/test_zos_job_output_func.py tests/functional/modules/test_zos_job_submit_func.py tests/functional/modules/test_zos_mount_func.py tests/sanity/ignore-2.10.txt tests/sanity/ignore-2.11.txt tests/sanity/ignore-2.12.txt tests/sanity/ignore-2.9.txt
2 parents 905c5de + 364ac7e commit e3dd3b7

File tree

121 files changed

+13945
-6811
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+13945
-6811
lines changed

.github/ISSUE_TEMPLATE/bug_issue.yml

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
name: Report a bug
2+
description: Request that a bug be reviewed.
3+
title: "[Bug] <title> "
4+
labels: [Bug]
5+
assignees:
6+
- IBMAnsibleHelper
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Before reporting a bug, please review existing isssues to avoid duplication.
12+
---
13+
- type: textarea
14+
id: issue-description
15+
attributes:
16+
label: Bug description
17+
description: Describe the bug you are experiencing.
18+
placeholder: |
19+
Verbosity is encouraged, the more you share the better for us to understand.
20+
1. Include the steps to reproduce
21+
2. Include playbook if applicable
22+
3. Include screen captures of applicable
23+
4. Include expected vs actual results if applicable
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: issue-output
28+
attributes:
29+
label: Playbook verbosity output
30+
description: Provide the command line output with debug and verbosity enabled.
31+
placeholder: |
32+
Insert the ouput using this form of the playbook command.
33+
- `ANSIBLE_DEBUG=1 ansible-playbook -i inventory your-playbook.yml -vvvv`
34+
validations:
35+
required: false
36+
- type: textarea
37+
id: ansible-cfg
38+
attributes:
39+
label: Contents of `ansible.cfg`
40+
description: Provide the contents of `ansible.cfg`.
41+
render: YAML
42+
validations:
43+
required: false
44+
- type: textarea
45+
id: ansible-inventory
46+
attributes:
47+
label: Contents of the inventory
48+
description: Provide the contents of the inventory
49+
render: YAML
50+
validations:
51+
required: false
52+
- type: textarea
53+
id: ansible-vars
54+
attributes:
55+
label: Contents of `group_vars` or `host_vars`
56+
description: Provide the contents of `group_vars` or `host_vars`
57+
render: YAML
58+
validations:
59+
required: false
60+
- type: textarea
61+
id: ansible-version
62+
attributes:
63+
label: Ansible version
64+
description: What is the verson of Ansible on the controller.
65+
placeholder: Paste verbatim output from `ansible --version`.
66+
render: shell
67+
validations:
68+
required: true
69+
- type: dropdown
70+
id: collection-version
71+
attributes:
72+
label: IBM z/OS Ansible core Version
73+
description: |
74+
Which version of the z/OS Ansible core collection are you using. If you are unsure, run the command: `cat ~/.ansible/collections/ansible_collections/ibm/ibm_zos_core/MANIFEST.json | grep version`
75+
multiple: true
76+
options:
77+
- v1.0.0
78+
- v1.1.0
79+
- v1.2.1
80+
- v1.3.0
81+
- v1.3.1
82+
- v1.3.3
83+
- v1.3.5
84+
- v1.3.6
85+
- v1.4.0-beta.1
86+
- v1.4.0-beta.2
87+
validations:
88+
required: true
89+
- type: dropdown
90+
id: zoau-version
91+
attributes:
92+
label: IBM ZOAU version
93+
description: Which version of ZOAU are you using. Ensure you are on the latest PTF.
94+
multiple: true
95+
options:
96+
- v1.0.3
97+
- v1.1.1
98+
- v1.2.0
99+
validations:
100+
required: true
101+
- type: input
102+
id: zos-version
103+
attributes:
104+
label: z/OS version
105+
description: What is the version of z/OS on the managed node.
106+
validations:
107+
required: false
108+
- type: dropdown
109+
id: modules
110+
attributes:
111+
label: Ansible module
112+
description: Select which modules are being reported in this bug. You can select more than one.
113+
multiple: true
114+
options:
115+
- zos_apf
116+
- zos_backup_restore
117+
- zos_blockinfile
118+
- zos_copy
119+
- zos_data_set
120+
- zos_encode
121+
- zos_fetch
122+
- zos_find
123+
- zos_gather_facts
124+
- zos_job_output
125+
- zos_job_query
126+
- zos_job_submit
127+
- zos_lineinfile
128+
- zos_mount
129+
- zos_mvs_raw
130+
- zos_operator
131+
- zos_operator_action_query
132+
- zos_ping
133+
- zos_tso_command
134+
validations:
135+
required: false

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 108 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: GitHub Community Support
4+
url: https://github.com/ansible-collections/ibm_zos_core/discussions
5+
about: Please ask and answer questions here.

.github/ISSUE_TEMPLATE/doc_issue.yml

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
name: Report a documentation issue
2+
description: Request that documentation be reviewed.
3+
title: "[Documentation] <title> "
4+
labels: [Documentation]
5+
assignees:
6+
- IBMAnsibleHelper
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Before reporting a documentation issue, please review existing isssues to avoid duplication.
12+
---
13+
- type: textarea
14+
id: issue-description
15+
attributes:
16+
label: Documentation issue description
17+
description: Describe the documentation issue.
18+
placeholder: |
19+
Verbosity is encouraged, the more you share the better for us to understand.
20+
1. Include links to the page you are reffering to if applicable
21+
2. Include reproduction steps if applicable
22+
3. Include any additional information that will help us
23+
4. Include screen captures of applicable
24+
5. Include browser or shell if applicable
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: ansible-version
29+
attributes:
30+
label: Ansible version
31+
description: What is the verson of Ansible on the controller if applicable.
32+
placeholder: Paste verbatim output from `ansible --version`.
33+
render: SHELL
34+
validations:
35+
required: false
36+
- type: dropdown
37+
id: collection-version
38+
attributes:
39+
label: IBM z/OS Ansible core Version
40+
description: |
41+
Which version of the z/OS Ansible core collection are you using. If you are unsure, run the command: `cat ~/.ansible/collections/ansible_collections/ibm/ibm_zos_core/MANIFEST.json | grep version`
42+
multiple: true
43+
options:
44+
- v1.0.0
45+
- v1.1.0
46+
- v1.2.1
47+
- v1.3.0
48+
- v1.3.1
49+
- v1.3.3
50+
- v1.3.5
51+
- v1.3.6
52+
- v1.4.0-beta.1
53+
- v1.4.0-beta.2
54+
validations:
55+
required: true
56+
- type: dropdown
57+
id: modules
58+
attributes:
59+
label: Ansible module
60+
description: Select which modules are being reported in this doc issue. You can select more than one.
61+
multiple: true
62+
options:
63+
- zos_apf
64+
- zos_backup_restore
65+
- zos_blockinfile
66+
- zos_copy
67+
- zos_data_set
68+
- zos_encode
69+
- zos_fetch
70+
- zos_find
71+
- zos_gather_facts
72+
- zos_job_output
73+
- zos_job_query
74+
- zos_job_submit
75+
- zos_lineinfile
76+
- zos_mount
77+
- zos_mvs_raw
78+
- zos_operator
79+
- zos_operator_action_query
80+
- zos_ping
81+
- zos_tso_command
82+
validations:
83+
required: false

.github/ISSUE_TEMPLATE/documentation_report.md

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)