Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
fdab909
feat: add Smart Release Please action
Dec 30, 2025
8d4bc7d
Add .secrets to .gitignore
michalby24 Dec 30, 2025
0ec4256
feat: improve Smart Release Please action
Jan 4, 2026
16476ee
chore(code): clean up docstrings in find_baseline_tag and parse_semver
Jan 4, 2026
d56727a
docs: update README for Smart Release Please action
Jan 5, 2026
6c03ce2
feat: include --first-parent in git log command for accurate commit d…
Jan 6, 2026
48dd03f
ci: update workflow to test smart release-please action, add unit te…
Jan 7, 2026
46cbbbb
docs: add architecture diagram and fix condition for RC version calcu…
Jan 7, 2026
7960f15
ci: update test command for smart release-please action to use direct…
Jan 7, 2026
53e6d93
feat: smart smart release please
Jan 12, 2026
ab49bb2
ci(tests): update path comment and mock return value for baseline tag…
Jan 12, 2026
de3a54d
feat: changes for smart release please
Jan 28, 2026
b224881
docs: update documentation
Jan 28, 2026
681ec56
docs: add comprehensive manual test results for Smart Release Please …
ronenkapelian Jan 29, 2026
371d0d3
docs: add comprehensive edge case and developer error testing results
ronenkapelian Jan 29, 2026
5e36ad3
feat: enhance error handling and update documentation for chore commits
Jan 29, 2026
6144c20
fix: update Python version to 3.x (latest stable)
ronenkapelian Jan 29, 2026
28cffd5
docs: add verification report confirming all issues fixed
ronenkapelian Jan 29, 2026
6920c4a
fix: update main function error handling to exit with error code 1
Jan 29, 2026
81e0d11
Merge branch 'smart-release-please' of https://github.com/MapColonies…
Jan 29, 2026
506f81a
chore: Delete VERIFICATION-FIXES-APPLIED.md
ronenkapelian Jan 29, 2026
4db0416
chore: add configuration for smart-release-please action
Feb 1, 2026
31be1d5
Merge branch 'master' into smart-release-please
michalby24 Feb 1, 2026
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
23 changes: 23 additions & 0 deletions .github/workflows/test-smart-release-please.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test smart release-please action

on:
pull_request:
paths:
- 'actions/smart-release-please/**'

jobs:
test-action:
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.10'

- name: Run smart release-please action tests
shell: bash
run: python3 test/test_rc_align.py -v

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
.secrets
Loading