Skip to content

Commit bec67e8

Browse files
Merge branch 'dev' into enabler/update-test-suits-pylint/zos-copy-func
2 parents 0b37562 + 163b7e5 commit bec67e8

File tree

153 files changed

+9073
-3882
lines changed

Some content is hidden

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

153 files changed

+9073
-3882
lines changed

.github/ISSUE_TEMPLATE/bug_issue.yml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,12 @@ body:
3939
- v1.11.0-beta.1
4040
- v1.10.0
4141
- v1.10.0-beta.1
42-
- v1.9.0
43-
- v1.9.0-beta.1
44-
- v1.8.0 (default)
42+
- v1.9.0 (default)
43+
- v1.8.0
4544
- v1.7.0
4645
- v1.6.0
4746
- v1.5.0
48-
- v1.4.1
49-
- v1.3.6
50-
- v1.3.5
51-
- v1.3.3
52-
- v1.3.1
53-
- v1.3.0
54-
default: 8
47+
default: 6
5548
validations:
5649
required: true
5750
- type: dropdown
@@ -70,10 +63,6 @@ body:
7063
- v1.2.4
7164
- v1.2.3
7265
- v1.2.2
73-
- v1.2.1
74-
- v1.2.0
75-
- v1.1.1
76-
- v1.0.3
7766
default: 5
7867
validations:
7968
required: true
@@ -88,8 +77,6 @@ body:
8877
- v3.12.x
8978
- v3.11.x (default)
9079
- v3.10.x
91-
- v3.9.x
92-
- v3.8.x
9380
default: 2
9481
validations:
9582
required: true

.github/ISSUE_TEMPLATE/collaboration_issue.yml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,12 @@ body:
4848
- v1.11.0-beta.1
4949
- v1.10.0
5050
- v1.10.0-beta.1
51-
- v1.9.0
52-
- v1.9.0-beta.1
53-
- v1.8.0 (default)
51+
- v1.9.0 (default)
52+
- v1.8.0
5453
- v1.7.0
5554
- v1.6.0
5655
- v1.5.0
57-
- v1.4.1
58-
- v1.3.6
59-
- v1.3.5
60-
- v1.3.3
61-
- v1.3.1
62-
- v1.3.0
63-
default: 8
56+
default: 6
6457
validations:
6558
required: false
6659
- type: dropdown
@@ -79,10 +72,6 @@ body:
7972
- v1.2.4
8073
- v1.2.3
8174
- v1.2.2
82-
- v1.2.1
83-
- v1.2.0
84-
- v1.1.1
85-
- v1.0.3
8675
default: 5
8776
validations:
8877
required: false
@@ -97,8 +86,6 @@ body:
9786
- v3.12.x
9887
- v3.11.x (default)
9988
- v3.10.x
100-
- v3.9.x
101-
- v3.8.x
10289
default: 2
10390
validations:
10491
required: false

.github/ISSUE_TEMPLATE/doc_issue.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,12 @@ body:
4040
- v1.11.0-beta.1
4141
- v1.10.0
4242
- v1.10.0-beta.1
43-
- v1.9.0
44-
- v1.9.0-beta.1
45-
- v1.8.0 (default)
43+
- v1.9.0 (default)
44+
- v1.8.0
4645
- v1.7.0
4746
- v1.6.0
4847
- v1.5.0
49-
- v1.4.1
50-
- v1.3.6
51-
- v1.3.5
52-
- v1.3.3
53-
- v1.3.1
54-
- v1.3.0
55-
default: 8
48+
default: 6
5649
validations:
5750
required: false
5851
- type: dropdown

.github/ISSUE_TEMPLATE/module_issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ body:
3232
- As a < type of user >, I want < some goal > so that < some reason >.
3333
Examples:
3434
- As a z/OS System Admin, I can grow zFS aggregates with Ansible so that my data sets don't fill up.
35-
- As a Junior developer, I want to be able to zip and unzip arives using Ansible, so that I don't have to perform operations elsewhere.
35+
- As a Junior developer, I want to be able to zip and unzip archives using Ansible, so that I don't have to perform operations elsewhere.
3636
validations:
3737
required: false

.github/workflows/ac-module-doc.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: AC Module Doc
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'plugins/modules/*'
7+
branches:
8+
- dev
9+
- staging*
10+
11+
jobs:
12+
module-doc:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Set up python
20+
uses: actions/setup-python@v5
21+
with:
22+
python-version: 3.11
23+
24+
- name: Set up venv
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install virtualenv
28+
mkdir venv
29+
virtualenv venv/venv-2.16
30+
31+
- name: Install dependencies
32+
run: |
33+
source venv/venv-2.16/bin/activate
34+
pip install ansible
35+
pip install ansible-doc-extractor
36+
37+
- name: Run ac-module-doc
38+
run: |
39+
source venv/venv-2.16/bin/activate
40+
export ANSIBLE_LIBRARY=/home/runner/work/ibm_zos_core/ibm_zos_core/plugins/modules/
41+
./ac --ac-build
42+
./ac --ac-module-doc

CHANGELOG.rst

Lines changed: 406 additions & 11 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)