Skip to content

Commit 08cbdce

Browse files
committed
script: remove video tutorial link from SSH key setup instructions
version: update commit message format for version bump docs: update commit message format for changelog update
1 parent 7c803bd commit 08cbdce

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This is a template repository for python module projects.
5151
[OPTIONAL] For **DEVELOPMENT** environment:
5252

5353
- Install [**git**](https://git-scm.com/downloads)
54-
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh) ([video tutorial](https://www.youtube.com/watch?v=snCP3c7wXw0))
54+
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)
5555

5656
### 2. 📥 Download or clone the repository
5757

docs/getting-started/prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ title: Prerequisites
1212
[OPTIONAL] For **DEVELOPMENT** environment:
1313

1414
- Install [**git**](https://git-scm.com/downloads)
15-
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh) ([video tutorial](https://www.youtube.com/watch?v=snCP3c7wXw0))
15+
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)

scripts/bump-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ main()
106106
echo "[INFO]: Committing bump version 'v${_new_version}'..."
107107
# Commit the updated version file:
108108
git add "${VERSION_FILE_PATH}" || exit 2
109-
git commit -m ":bookmark: Bump version to '${_new_version}'." || exit 2
109+
git commit -m "version: bump version to '${_new_version}'." || exit 2
110110
echo "[OK]: Done."
111111

112112
if [ "${_IS_TAG}" == true ]; then

scripts/changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ main()
9999
echo "[INFO]: Committing changelog version '${_release_tag}'..."
100100
git add "${CHANGELOG_FILE_PATH}" || exit 2
101101
git add "${RELEASE_NOTES_FILE_PATH}" || exit 2
102-
git commit -m ":memo: Update changelog version '${_release_tag}'." || exit 2
102+
git commit -m "docs: update changelog version '${_release_tag}'." || exit 2
103103
echo "[OK]: Done."
104104

105105
if [ "${_IS_PUSH}" == true ]; then

0 commit comments

Comments
 (0)