Skip to content
This repository was archived by the owner on Nov 12, 2023. It is now read-only.

Commit ac6ccc1

Browse files
committed
Initial commit
0 parents  commit ac6ccc1

Some content is hidden

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

49 files changed

+1077
-0
lines changed

.ansible-lint

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
skip_list:
3+
- '106'
4+
- '204'
5+
- '208'

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug
3+
about: Report a bug related to ansible role
4+
labels: bug
5+
---
6+
7+
**What happened?**
8+
9+
**Did you expect to see some different?**
10+
11+
**How to reproduce it (as minimally and precisely as possible)**:
12+
13+
**Environment**
14+
15+
* Role version:
16+
17+
`Insert release version/galaxy tag or Git SHA here`
18+
19+
* Ansible version information:
20+
21+
`ansible --version`
22+
<!-- Replace the command with its output above -->
23+
24+
* Variables:
25+
26+
```
27+
insert role variables relevant to the issue
28+
```
29+
30+
* Ansible playbook execution Logs:
31+
32+
```
33+
insert Ansible logs relevant to the issue here
34+
```
35+
36+
**Anything else we need to know?**:

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature
3+
about: If you want to propose a new feature or enhancement
4+
labels: enhancement
5+
---
6+
7+
**What is missing?**
8+
9+
**Why do we need it?**
10+
11+
**Environment**
12+
13+
* Role version:
14+
15+
`Insert release version/galaxy tag or Git SHA here`
16+
17+
* Ansible version information:
18+
19+
`ansible --version`
20+
<!-- Replace the command with its output above -->
21+
22+
**Anything else we need to know?**:

.github/ISSUE_TEMPLATE/support.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Support
3+
about: If you have questions about this ansible role
4+
labels: question
5+
---
6+
7+
**What did you do?**
8+
9+
**Did you expect to see some different?**
10+
11+
**Environment**
12+
13+
* Role version:
14+
15+
`Insert release version/galaxy tag or Git SHA here`
16+
17+
* Ansible version information:
18+
19+
`ansible --version`
20+
<!-- Replace the command with its output above -->
21+
22+
* Variables:
23+
24+
```
25+
insert role variables relevant to the issue
26+
```
27+
28+
* Ansible playbook execution Logs:
29+
30+
```
31+
insert Ansible logs relevant to the issue here
32+
```
33+
34+
**Anything else we need to know?**:

.github/labeler.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
# configuration spec at https://github.com/actions/labeler/blob/master/README.md
3+
area/docs:
4+
- meta/*
5+
- CHANGELOG.md
6+
- CONTRIBUTING.md
7+
- LICENSE
8+
- README.md
9+
area/tests:
10+
- molecule/*
11+
- molecule/**/*
12+
- .ansible-lint
13+
- test-requirements.txt
14+
- tox.ini
15+
area/automation:
16+
- .travis/*
17+
- .github/*
18+
- .github/**/*
19+
- .travis.yml
20+
- .mergify.yml
21+
area/vars:
22+
- defaults/*
23+
- vars/*
24+
- vars/**/*
25+
area/tasks:
26+
- handlers/*
27+
- tasks/*
28+
- tasks/**/*
29+
area/jinja:
30+
- templates/*
31+
- templates/**/*

.github/labels.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
# Default GitHub labels
3+
- color: d73a4a
4+
name: bug
5+
description: Something isn't working
6+
- color: cfd3d7
7+
name: duplicate
8+
description: This issue or pull request already exists
9+
- color: a2eeef
10+
name: enhancement
11+
description: New feature or request
12+
- color: 7057ff
13+
name: good first issue
14+
description: Good for newcomers
15+
- color: 008672
16+
name: help wanted
17+
description: Extra attention is needed
18+
- color: e4e669
19+
name: invalid
20+
description: This doesn't seem right
21+
- color: d876e3
22+
name: question
23+
description: Further information is requested
24+
- color: ffffff
25+
name: wontfix
26+
description: This will not be worked on
27+
28+
# Labels specific to cloudalchemy
29+
- color: 0366d6
30+
name: area/docs
31+
description: Improvements or additions to documentation
32+
- color: 0366d6
33+
name: area/tests
34+
description: Everything related to molecule tests and linters
35+
- color: 0366d6
36+
name: area/automation
37+
description: Bots, bots everywhere
38+
- color: 0366d6
39+
name: area/vars
40+
description: Ansible variables used in role
41+
- color: 0366d6
42+
name: area/tasks
43+
description: Logic behind ansible role
44+
- color: 0366d6
45+
name: area/jinja
46+
description: Templates

.github/lock.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
_extends: auto-maintenance

.github/stale.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
_extends: auto-maintenance

.github/workflows/labeler.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Pull request labeler
3+
on:
4+
schedule:
5+
- cron: '*/15 * * * *'
6+
jobs:
7+
labeler:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: paulfantom/periodic-labeler@master
11+
env:
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
GITHUB_REPOSITORY: ${{ github.repository }}

.github/workflows/labels.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Sync labels in the declarative way
3+
on:
4+
push:
5+
branches:
6+
- master
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/[email protected]
12+
- uses: micnncim/[email protected]
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
GITHUB_REPOSITORY: ${{ github.repository }}
16+
with:
17+
manifest: .github/labels.yml

0 commit comments

Comments
 (0)