Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
synchronize
]

# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings

Check warning on line 30 in .github/workflows/cla.yml

View workflow job for this annotation

GitHub Actions / jinja2-lint

30:121 [line-length] line too long (126 > 120 characters)

Check warning on line 30 in .github/workflows/cla.yml

View workflow job for this annotation

GitHub Actions / jinja2-lint

30:121 [line-length] line too long (126 > 120 characters)
permissions:
actions: write
contents: write # this can be 'read' if the signatures are in remote repository
Expand All @@ -39,20 +39,20 @@
runs-on: ubuntu-latest
steps:
- name: "CLA Assistant"
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'

Check warning on line 42 in .github/workflows/cla.yml

View workflow job for this annotation

GitHub Actions / jinja2-lint

42:121 [line-length] line too long (187 > 120 characters)

Check warning on line 42 in .github/workflows/cla.yml

View workflow job for this annotation

GitHub Actions / jinja2-lint

42:121 [line-length] line too long (187 > 120 characters)
uses: contributor-assistant/github-action@v2.6.1
env:

GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# the below token should have repo scope and must be manually added by you in the repository's secret
# This token is required only if you have configured to store the signatures in a remote repository/organization

Check warning on line 48 in .github/workflows/cla.yml

View workflow job for this annotation

GitHub Actions / jinja2-lint

48:121 [line-length] line too long (122 > 120 characters)

Check warning on line 48 in .github/workflows/cla.yml

View workflow job for this annotation

GitHub Actions / jinja2-lint

48:121 [line-length] line too long (122 > 120 characters)
# PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
signed-commit-message: 'chore: $contributorName has signed the CLA'

Check warning on line 51 in .github/workflows/cla.yml

View workflow job for this annotation

GitHub Actions / jinja2-lint

51:34 [quoted-strings] string value is not quoted with double quotes

Check warning on line 51 in .github/workflows/cla.yml

View workflow job for this annotation

GitHub Actions / jinja2-lint

51:34 [quoted-strings] string value is not quoted with double quotes
path-to-signatures: 'signatures/version1/cla.json'
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
# branch should not be protected
branch: 'main'
branch: 'master'
allowlist: "{{ cookiecutter.github_username }},github-actions[bot],dependabot[bot],bot*"

# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken
Expand Down
14 changes: 13 additions & 1 deletion changelogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,23 @@ Feat 008 cla (#30)
- Merge pull request #34 from jcook3701/develop

Feat 010 (#33)
- Feat 011 cla fix (#35)

* fix(docs): jekyll ci/cd fix.

* fix(cla): Fixed cla path-to-document to not use a template file.
- Merge pull request #36 from jcook3701/develop

Feat 011 cla fix (#35)

### 🐛 Fixed

- *(template)* Updates to template cookiecutter.json file.
- *(docs)* Jekyll ci/cd fix.

### 🚀 Added

- *(build)* Updates to documentation makefile.
- *(build)* Updates to documentation makefile.
## [0.1.0] - 2025-12-05

### ⚙️ Miscellaneous
Expand Down
14 changes: 13 additions & 1 deletion changelogs/releases/v0.1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,20 @@ Feat 008 cla (#30)
- Merge pull request #34 from jcook3701/develop

Feat 010 (#33)
- Feat 011 cla fix (#35)

* fix(docs): jekyll ci/cd fix.

* fix(cla): Fixed cla path-to-document to not use a template file.
- Merge pull request #36 from jcook3701/develop

Feat 011 cla fix (#35)

### 🐛 Fixed

- *(template)* Updates to template cookiecutter.json file.
- *(docs)* Jekyll ci/cd fix.

### 🚀 Added

- *(build)* Updates to documentation makefile.
- *(build)* Updates to documentation makefile.
11 changes: 9 additions & 2 deletions {{ cookiecutter.project_slug }}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,23 @@ PUBLISHDIR ?=
# --------------------------------------------------
# 📘 Documentation (Sphinx + Jekyll)
# --------------------------------------------------
RUBY_INSTALL := bundle install
JEKYLL_BUILD := bundle exec jekyll build --quiet
JEKYLL_CLEAN := bundle exec jekyll clean
JEKYLL_SERVE := bundle exec jekyll serve
# --------------------------------------------------
.PHONY: all jekyll jekyll-serve build run clean help
.PHONY: all ruby-install jekyll jekyll-serve build run clean help
# --------------------------------------------------
# Default:
# --------------------------------------------------
all: build
# --------------------------------------------------
# 📘 Documentation (Jekyll)
# ♦️ Ruby
# --------------------------------------------------
ruby-install:
$(AT)$(RUBY_INSTALL)
# --------------------------------------------------
# 📚 Documentation (Jekyll)
# --------------------------------------------------
jekyll:
$(AT)echo "🔨 Building Jekyll site 📘..."
Expand Down Expand Up @@ -80,6 +86,7 @@ help:
$(AT)echo " version: $(PACKAGE_VERSION)"
$(AT)echo ""
$(AT)echo "Usage:"
$(AT)echo " make ruby-install Installs Gemfile packages."
$(AT)echo " make build Generate Jekyll documentation"
$(AT)echo " make run Serve Jekyll site locally"
$(AT)echo " make clean Clean Jekyll build artifacts"
Expand Down
Loading