Skip to content

Commit 6aa7b5f

Browse files
committed
Merge branch 'cookiecutter-template' into feat-014
2 parents 57b2d92 + d2af8a3 commit 6aa7b5f

7 files changed

Lines changed: 52 additions & 5 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## 🐞 Bug Fix Description
2+
<!-- Provide a clear and concise description of the bug and why the fix is necessary. -->
3+
4+
**Related Issue:** Fixes # <!-- Link the issue number here -->
5+
6+
### 🛠️ Changes Made
7+
- [ ] List specific changes or files modified.
8+
- [ ] Describe how the fix addresses the root cause.
9+
10+
### 🧪 How to Reproduce & Test
11+
1. **Steps to reproduce:** (e.g., click X, then Y)
12+
2. **Current behavior:** (before this fix)
13+
3. **Expected behavior:** (after this fix)
14+
4. **Testing performed:** (e.g., ran `pytest` or actions performed to recreate live testing situation)
15+
16+
### ✅ Checklist
17+
- [ ] My code follows the project style guidelines.
18+
- [ ] I have performed a self-review of my code.
19+
- [ ] I have added tests that prove my fix is effective.
20+
- [ ] All new and existing tests passed.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## ✨ New Feature Description
2+
<!-- What is the new functionality? What problem does it solve for the user? -->
3+
4+
**Related Issue:** Resolves # <!-- Link the feature request issue here -->
5+
6+
### 🚀 Proposed Changes
7+
- [ ] Detail the new components, logic, or UI added.
8+
- [ ] Mention any new dependencies introduced.
9+
10+
### 📸 Screenshots / Demos (If Applicable)
11+
<!-- Drag and drop images or GIFs here to show UI changes. -->
12+
13+
### 🛠️ Technical Details
14+
- [ ] Architecture changes (if any).
15+
- [ ] New environment variables or configurations required.
16+
17+
### ✅ Checklist
18+
- [ ] My code follows the project style guidelines.
19+
- [ ] I have updated the documentation accordingly.
20+
- [ ] I have added/updated tests for this feature.
21+
- [ ] My changes generate no new warnings or console errors.

.github/pull_request_template.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### 📋 Select a Pull Request Template
2+
Please switch to the **Preview** tab and select the correct type:
3+
* [Standard PR](?template=01-default-pull-request.md)
4+
* [Bug Fix](?template=02-bug-fix.md)
5+
* [Feature Request](?template=03-feature-request.md)

.github/workflows/cla.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,16 @@ jobs:
4242
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
4343
uses: contributor-assistant/github-action@v2.6.1
4444
env:
45-
46-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47-
# the below token should have repo scope and must be manually added by you in the repository's secret
45+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # the below token should have repo scope and must be manually added by you in the repository's secret
4846
# This token is required only if you have configured to store the signatures in a remote repository/organization
4947
# PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
5048
with:
5149
signed-commit-message: 'chore: $contributorName has signed the CLA'
5250
path-to-signatures: 'signatures/version1/cla.json'
5351
path-to-document: 'https://github.com/${{ github.repository }}/blob/master/docs/jekyll/_site/manual/developer-resources/cla.html' # e.g. a CLA or a DCO document
5452
# branch should not be protected
55-
branch: 'master'
56-
allowlist: "{{ cookiecutter.github_username }},github-actions[bot],dependabot[bot],bot*"
53+
branch: "master"
54+
allowlist: "jcook3701,github-actions[bot],dependabot[bot],bot*"
5755

5856
# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken
5957
#remote-organization-name: enter the remote organization name where the signatures should be stored (Default is storing the signatures in the same repository)

changelogs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ Feat 013 (#41)
136136
- *(template)* Updates to template cookiecutter.json file.
137137
- *(links)* Fix for document links.
138138
- *(links)* More link fixes.
139+
- *(upgrader)* Fixed upgrader file.
139140

140141
### 🚀 Added
141142

changelogs/releases/v0.1.1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ Feat 013 (#41)
136136
- *(template)* Updates to template cookiecutter.json file.
137137
- *(links)* Fix for document links.
138138
- *(links)* More link fixes.
139+
- *(upgrader)* Fixed upgrader file.
139140

140141
### 🚀 Added
141142

docs/cookiecutter_input.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"__year_range": "2025-2026",
1616
"_checkout": "main",
1717
"_copy_without_render": [],
18+
"_default_branch": "master",
1819
"_extensions": [
1920
"jinja2.ext.do",
2021
"jinja2.ext.loopcontrols"

0 commit comments

Comments
 (0)