Skip to content

Commit a2620c9

Browse files
authored
Merge pull request #38 from jcook3701/develop
Feat 012 (#37)
2 parents fbffa80 + 30f5309 commit a2620c9

4 files changed

Lines changed: 36 additions & 5 deletions

File tree

.github/workflows/cla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
path-to-signatures: 'signatures/version1/cla.json'
5353
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
55-
branch: 'main'
55+
branch: 'master'
5656
allowlist: "{{ cookiecutter.github_username }},github-actions[bot],dependabot[bot],bot*"
5757

5858
# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken

changelogs/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,23 @@ Feat 008 cla (#30)
9191
- Merge pull request #34 from jcook3701/develop
9292

9393
Feat 010 (#33)
94+
- Feat 011 cla fix (#35)
95+
96+
* fix(docs): jekyll ci/cd fix.
97+
98+
* fix(cla): Fixed cla path-to-document to not use a template file.
99+
- Merge pull request #36 from jcook3701/develop
100+
101+
Feat 011 cla fix (#35)
94102

95103
### 🐛 Fixed
96104

97105
- *(template)* Updates to template cookiecutter.json file.
98-
- *(docs)* Jekyll ci/cd fix.
106+
107+
### 🚀 Added
108+
109+
- *(build)* Updates to documentation makefile.
110+
- *(build)* Updates to documentation makefile.
99111
## [0.1.0] - 2025-12-05
100112

101113
### ⚙️ Miscellaneous

changelogs/releases/v0.1.1.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,20 @@ Feat 008 cla (#30)
9191
- Merge pull request #34 from jcook3701/develop
9292

9393
Feat 010 (#33)
94+
- Feat 011 cla fix (#35)
95+
96+
* fix(docs): jekyll ci/cd fix.
97+
98+
* fix(cla): Fixed cla path-to-document to not use a template file.
99+
- Merge pull request #36 from jcook3701/develop
100+
101+
Feat 011 cla fix (#35)
94102

95103
### 🐛 Fixed
96104

97105
- *(template)* Updates to template cookiecutter.json file.
98-
- *(docs)* Jekyll ci/cd fix.
106+
107+
### 🚀 Added
108+
109+
- *(build)* Updates to documentation makefile.
110+
- *(build)* Updates to documentation makefile.

{{ cookiecutter.project_slug }}/Makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,23 @@ PUBLISHDIR ?=
4141
# --------------------------------------------------
4242
# 📘 Documentation (Sphinx + Jekyll)
4343
# --------------------------------------------------
44+
RUBY_INSTALL := bundle install
4445
JEKYLL_BUILD := bundle exec jekyll build --quiet
4546
JEKYLL_CLEAN := bundle exec jekyll clean
4647
JEKYLL_SERVE := bundle exec jekyll serve
4748
# --------------------------------------------------
48-
.PHONY: all jekyll jekyll-serve build run clean help
49+
.PHONY: all ruby-install jekyll jekyll-serve build run clean help
4950
# --------------------------------------------------
5051
# Default:
5152
# --------------------------------------------------
5253
all: build
5354
# --------------------------------------------------
54-
# 📘 Documentation (Jekyll)
55+
# ♦️ Ruby
56+
# --------------------------------------------------
57+
ruby-install:
58+
$(AT)$(RUBY_INSTALL)
59+
# --------------------------------------------------
60+
# 📚 Documentation (Jekyll)
5561
# --------------------------------------------------
5662
jekyll:
5763
$(AT)echo "🔨 Building Jekyll site 📘..."
@@ -80,6 +86,7 @@ help:
8086
$(AT)echo " version: $(PACKAGE_VERSION)"
8187
$(AT)echo ""
8288
$(AT)echo "Usage:"
89+
$(AT)echo " make ruby-install Installs Gemfile packages."
8390
$(AT)echo " make build Generate Jekyll documentation"
8491
$(AT)echo " make run Serve Jekyll site locally"
8592
$(AT)echo " make clean Clean Jekyll build artifacts"

0 commit comments

Comments
 (0)