Skip to content

Commit e6ad878

Browse files
authored
Merge pull request #42 from jcook3701/develop
Feat 013 (#41)
2 parents a5a690f + ba18feb commit e6ad878

5 files changed

Lines changed: 51 additions & 38 deletions

File tree

.github/workflows/cla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
signed-commit-message: 'chore: $contributorName has signed the CLA'
5252
path-to-signatures: 'signatures/version1/cla.json'
53-
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
53+
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
5454
# branch should not be protected
5555
branch: 'master'
5656
allowlist: "{{ cookiecutter.github_username }},github-actions[bot],dependabot[bot],bot*"

.github/workflows/jekyll-gh-pages.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,10 @@ jobs:
6060
ruby-version: '3.3' # Recommended for Jekyll 4.4 in 2026
6161
bundler-cache: true # Runs 'bundle install' and caches gems automatically
6262
working-directory: ./docs/jekyll
63-
- name: Install Ruby Packages
64-
run: |
65-
make ruby-install
6663
- name: Setup Pages
6764
uses: actions/configure-pages@v5
6865
- name: Build with Jekyll site in /docs/jekyll
69-
run: make build-docs
66+
run: make jekyll
7067
env:
7168
PAGES_REPO_NWO: ${{ github.repository }}
7269
JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

changelogs/CHANGELOG.md

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -99,25 +99,33 @@ Feat 010 (#33)
9999
- Merge pull request #36 from jcook3701/develop
100100

101101
Feat 011 cla fix (#35)
102-
- Update template
103-
- Update template
104-
- Update template
105-
- Update template
106-
- Update template
107-
- Merge branch 'cookiecutter-template' into feat-012
108-
- Update template
109-
- Merge branch 'cookiecutter-template' into feat-012
102+
- Feat 012 (#37)
110103

111-
### 🐛 Fixed
104+
* feat(build): Updates to documentation makefile.
112105

113-
- *(template)* Updates to template cookiecutter.json file.
114-
- *(cla)* Fix for CLA fix for master branch.
115-
- *(makefile)* Minor fix for documentation emoji.
106+
* fix(cla): Fix for CLA fix for master branch.
107+
- Merge pull request #38 from jcook3701/develop
108+
109+
Feat 012 (#37)
110+
- Creating file for storing CLA Signatures
111+
- Feat 012 (#39)
112+
113+
* feat(build): Updates to documentation makefile.
114+
115+
* fix(cla): Fix for CLA fix for master branch.
116116

117-
### 🚀 Added
117+
* chore(template) Update template from cookiecutter-cookiecutter repository.
118118

119-
- *(build)* Updates to documentation makefile.
120-
- *(build)* Updates to documentation makefile.
119+
* fix(makefile): Minor fix for documentation emoji.
120+
- Merge pull request #40 from jcook3701/develop
121+
122+
Feat 012 (#39)
123+
124+
### 🐛 Fixed
125+
126+
- *(template)* Updates to template cookiecutter.json file.
127+
- *(makefile)* Emoji for documentation fixed.
128+
- *(ci/cd)* Jekyll build and deploy fix.
121129
## [0.1.0] - 2025-12-05
122130

123131
### ⚙️ Miscellaneous

changelogs/releases/v0.1.1.md

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -99,22 +99,30 @@ Feat 010 (#33)
9999
- Merge pull request #36 from jcook3701/develop
100100

101101
Feat 011 cla fix (#35)
102-
- Update template
103-
- Update template
104-
- Update template
105-
- Update template
106-
- Update template
107-
- Merge branch 'cookiecutter-template' into feat-012
108-
- Update template
109-
- Merge branch 'cookiecutter-template' into feat-012
102+
- Feat 012 (#37)
110103

111-
### 🐛 Fixed
104+
* feat(build): Updates to documentation makefile.
112105

113-
- *(template)* Updates to template cookiecutter.json file.
114-
- *(cla)* Fix for CLA fix for master branch.
115-
- *(makefile)* Minor fix for documentation emoji.
106+
* fix(cla): Fix for CLA fix for master branch.
107+
- Merge pull request #38 from jcook3701/develop
108+
109+
Feat 012 (#37)
110+
- Creating file for storing CLA Signatures
111+
- Feat 012 (#39)
112+
113+
* feat(build): Updates to documentation makefile.
114+
115+
* fix(cla): Fix for CLA fix for master branch.
116116

117-
### 🚀 Added
117+
* chore(template) Update template from cookiecutter-cookiecutter repository.
118118

119-
- *(build)* Updates to documentation makefile.
120-
- *(build)* Updates to documentation makefile.
119+
* fix(makefile): Minor fix for documentation emoji.
120+
- Merge pull request #40 from jcook3701/develop
121+
122+
Feat 012 (#39)
123+
124+
### 🐛 Fixed
125+
126+
- *(template)* Updates to template cookiecutter.json file.
127+
- *(makefile)* Emoji for documentation fixed.
128+
- *(ci/cd)* Jekyll build and deploy fix.

{{ cookiecutter.project_slug }}/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ AUTHOR = "{{ cookiecutter.author }}"
3939
VERSION = "{{ cookiecutter.version }}"
4040
PUBLISHDIR ?=
4141
# --------------------------------------------------
42-
# 📘 Documentation (Sphinx + Jekyll)
42+
# 📚 Documentation (Sphinx + Jekyll)
4343
# --------------------------------------------------
4444
RUBY_INSTALL := bundle install
4545
JEKYLL_BUILD := bundle exec jekyll build --quiet
@@ -50,7 +50,7 @@ JEKYLL_SERVE := bundle exec jekyll serve
5050
# --------------------------------------------------
5151
# Default:
5252
# --------------------------------------------------
53-
all: build
53+
all: ruby-install build
5454
# --------------------------------------------------
5555
# ♦️ Ruby
5656
# --------------------------------------------------
@@ -60,7 +60,7 @@ ruby-install:
6060
# 📚 Documentation (Jekyll)
6161
# --------------------------------------------------
6262
jekyll:
63-
$(AT)echo "🔨 Building Jekyll site 📘..."
63+
$(AT)echo "🔨 Building Jekyll site 📚..."
6464
$(AT)$(JEKYLL_BUILD)
6565
$(AT)echo "✅ Full documentation build complete!"
6666

0 commit comments

Comments
 (0)