Skip to content

Commit 92e8a0f

Browse files
committed
Merge branch 'release-v1.0.0'
2 parents 245ea80 + 3a555d6 commit 92e8a0f

49 files changed

Lines changed: 3829 additions & 3 deletions

Some content is hidden

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

.ansible-lint

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
exclude_paths:
2+
- .github/
3+
- .roles/
4+
- .collections/
5+
- .cache/
6+
- ~/.cache/ansible-lint/
7+
- ~/.cache/ansible-compat/
8+
warn_list:
9+
- galaxy[version-incorrect]

.bumpversion.cfg

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[bumpversion]
2+
commit = True
3+
tag = False
4+
current_version = 1.0.0
5+
6+
[bumpversion:file:pyproject.toml]
7+
search = version = "{current_version}"
8+
replace = version = "{new_version}"
9+
10+
[bumpversion:file(title):CHANGELOG.md]
11+
search = {#}{#} [Unreleased]
12+
replace = {#}{#} [Unreleased]
13+
14+
{#}{#} [{new_version}] - {now:%Y-%m-%d}
15+
16+
[bumpversion:file:galaxy.yml]
17+
search = version: {current_version}
18+
replace = version: {new_version}
19+
20+
[bumpversion:file(links):CHANGELOG.md]
21+
search = [Unreleased]: https://github.com/fedejaure/dev-setup/compare/v{current_version}...HEAD
22+
replace = [Unreleased]: https://github.com/fedejaure/dev-setup/compare/v{new_version}...HEAD
23+
[{new_version}]: https://github.com/fedejaure/dev-setup/compare/v{current_version}...v{new_version}

.darglint

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[darglint]
2+
strictness = short
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: 🐛 Bug report
3+
about: Create a report to help us improve
4+
labels: bug
5+
assignees: ''
6+
7+
---
8+
9+
## Expected Behavior
10+
11+
12+
## Actual Behavior
13+
14+
15+
## Steps to Reproduce the Problem
16+
17+
1.
18+
1.
19+
1.
20+
21+
## Specifications
22+
23+
- Version:
24+
- Platform:
25+
- Subsystem:

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
blank_issues_enabled: false
2+
contact_links: []
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: 🚀 Feature request
3+
about: Suggest an idea for this project
4+
labels: enhancement
5+
assignees: ''
6+
7+
---
8+
9+
**Is your feature request related to a problem? Please describe.**
10+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11+
12+
**Describe the solution you'd like**
13+
A clear and concise description of what you want to happen.
14+
15+
**Describe alternatives you've considered**
16+
A clear and concise description of any alternative solutions or features you've considered.
17+
18+
**Additional context**
19+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Fixes #
2+
3+
## Proposed Changes
4+
5+
-
6+
-
7+
-

.github/dependabot.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
time: "08:00"
8+
timezone: "Europe/Berlin"
9+
labels:
10+
- "dependencies"
11+
- "github_actions"
12+
open-pull-requests-limit: 99
13+
target-branch: "develop"
14+
- package-ecosystem: pip
15+
directory: "/"
16+
schedule:
17+
interval: "monthly"
18+
time: "08:00"
19+
timezone: "Europe/Berlin"
20+
labels:
21+
- "dependencies"
22+
- "python"
23+
open-pull-requests-limit: 99
24+
target-branch: "develop"
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- develop
8+
pull_request:
9+
branches:
10+
- develop
11+
schedule:
12+
- cron: '0 6 1 * *'
13+
14+
jobs:
15+
analyze:
16+
name: Analyze
17+
runs-on: ubuntu-latest
18+
permissions:
19+
actions: read
20+
contents: read
21+
security-events: write
22+
23+
strategy:
24+
fail-fast: false
25+
matrix:
26+
language: [ 'python' ]
27+
28+
steps:
29+
- name: Checkout repository
30+
uses: actions/checkout@v3.3.0
31+
32+
# Initializes the CodeQL tools for scanning.
33+
- name: Initialize CodeQL
34+
uses: github/codeql-action/init@v2
35+
with:
36+
languages: ${{ matrix.language }}
37+
38+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
39+
# If this step fails, then you should remove it and run the build manually (see below)
40+
- name: Autobuild
41+
uses: github/codeql-action/autobuild@v2
42+
43+
- name: Perform CodeQL Analysis
44+
uses: github/codeql-action/analyze@v2
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: "Pre-commit autoupdate"
2+
3+
on:
4+
schedule:
5+
- cron: '0 6 1 * *'
6+
workflow_dispatch:
7+
8+
jobs:
9+
autoupdate:
10+
name: autoupdate
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3.3.0
14+
with:
15+
ref: develop
16+
17+
- name: Set up Python 3.10
18+
uses: actions/setup-python@v4
19+
with:
20+
python-version: "3.10"
21+
22+
- name: Install pre-commit
23+
run: pip install pre-commit
24+
25+
- name: Run autoupdate
26+
run: pre-commit autoupdate
27+
28+
- name: Run pre-commit
29+
run: pre-commit run --all-files
30+
31+
- uses: peter-evans/create-pull-request@v4.2.3
32+
with:
33+
token: ${{ secrets.GITHUB_TOKEN }}
34+
branch: chore-update-pre-commit-hooks
35+
title: Update pre-commit hooks
36+
commit-message: "Update pre-commit hooks"
37+
body: |
38+
# Update pre-commit hooks
39+
40+
- Update pre-commit hooks to the latest version.
41+
delete-branch: true
42+
labels: |
43+
dependencies
44+
python

0 commit comments

Comments
 (0)