Skip to content

Commit 995fcc6

Browse files
authored
Merge pull request #51 from FullStackWithLawrence/next
v0.2.0
2 parents cccb690 + b089367 commit 995fcc6

38 files changed

+656
-381
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# Contributing
2+
23
The repository is released under the GNU AFFERO GENERAL PUBLIC LICENSE license, and follows a standard Github development process, using Github tracker for issues and merging pull requests into master.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
54
---
65

76
**Describe the bug**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
54
---
65

76
**Is your feature request related to a problem? Please describe.**

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
### Type of Change
2+
23
<!-- What type of change does your code introduce? -->
4+
35
- [ ] New feature
46
- [ ] Bug fix
57
- [ ] Documentation
68
- [ ] Refactor
79
- [ ] Chore
810

911
### Resolves
12+
1013
- Fixes #[Add issue number here.]
1114

1215
### Describe Changes
16+
1317
<!-- Describe your changes in detail, if applicable. -->
18+
1419
_Describe what this Pull Request does_

.github/actions/tests/python/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ inputs:
1212
required: true
1313
type: string
1414

15-
1615
env:
1716
REQUIREMENTS_PATH: "requirements/local.txt"
1817

.github/workflows/auto-assign.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
issues: write
1212
pull-requests: write
1313
steps:
14-
- name: 'Auto-assign issue'
15-
uses: pozil/auto-assign-issue@v1
16-
with:
14+
- name: "Auto-assign issue"
15+
uses: pozil/auto-assign-issue@v1
16+
with:
1717
repo-token: ${{ secrets.GITHUB_TOKEN }}
1818
assignees: lpm0073
1919
numOfAssignee: 1

.github/workflows/semanticVersionBump.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ jobs:
110110
id: update_version
111111
run: |
112112
echo "# -*- coding: utf-8 -*-" > ${{ env.VERSION_FILE }}
113+
echo "# DO NOT EDIT." > ${{ env.VERSION_FILE }}
114+
echo "# Managed via automated CI/CD in .github/workflows/semanticVersionBump.yml." > ${{ env.VERSION_FILE }}
113115
echo "__version__ = \"${{ env.NEXT_VERSION }}\"" >> ${{ env.VERSION_FILE }}
114116
git config --local user.email "[email protected]"
115117
git config --local user.name "GitHub Action"

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Build artifacts
2+
build/
3+
dist/
4+
*.egg-info/
5+
*.egg
6+
7+
18
# Jupyter Notebook
29
.ipynb_checkpoints
310
data

.mergify.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
pull_request_rules:
44
- name: automatic approve dependabot pull requests
55
conditions:
6-
- 'author~=dependabot[bot]|dependabot-preview[bot]|dependabot'
6+
- "author~=dependabot[bot]|dependabot-preview[bot]|dependabot"
77
actions:
88
review:
99
type: APPROVE
1010

1111
- name: automatic merge dependabot pull requests
1212
conditions:
13-
- 'author~=dependabot[bot]|dependabot-preview[bot]|dependabot'
14-
- '#approved-reviews-by>=1'
15-
- 'base=main' # replace 'main' with the name of the branch you want to auto-merge into
13+
- "author~=dependabot[bot]|dependabot-preview[bot]|dependabot"
14+
- "#approved-reviews-by>=1"
15+
- "base=main" # replace 'main' with the name of the branch you want to auto-merge into
1616
actions:
1717
merge:
1818
method: merge

.pre-commit-config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ default_language_version:
22
# default language version for each language
33
python: python3.11
44
repos:
5+
- repo: https://github.com/pre-commit/mirrors-prettier
6+
rev: v4.0.0-alpha.3-1
7+
hooks:
8+
- id: prettier
59
- repo: https://github.com/codespell-project/codespell
610
rev: v2.2.6
711
hooks:

0 commit comments

Comments
 (0)