Skip to content
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ecbaf54
feat(release): sementic release
Ayush8923 Jun 12, 2026
88d0024
fix(template): update the pull request template
Ayush8923 Jun 13, 2026
25eecd7
fix(template): update the pull request template
Ayush8923 Jun 13, 2026
6fd2c75
fix(*): testing
Ayush8923 Jun 14, 2026
9490e20
Release: Semantic Release Testing (#208)
Ayush8923 Jun 14, 2026
b646680
Release: Pre-Release Testing (#210)
Ayush8923 Jun 14, 2026
ee842ad
fix(*): few updates for testing
Ayush8923 Jun 14, 2026
599d5e4
Merge branch 'feat/semantic-release' of https://github.com/ProjectTec…
Ayush8923 Jun 14, 2026
5462ccb
Release: Pre-Release Testing (#211)
Ayush8923 Jun 14, 2026
f5dfe29
fix(*): update the branch name
Ayush8923 Jun 14, 2026
3972c6b
Release: Pre-Release Testing (#212)
Ayush8923 Jun 14, 2026
4d18168
feat: test semantic release
Ayush8923 Jun 14, 2026
6502257
fix(*): added branch name for testing
Ayush8923 Jun 14, 2026
b46d077
feat: test semantic release
Ayush8923 Jun 14, 2026
393c372
fix(*): added branch name for testing
Ayush8923 Jun 14, 2026
0523eeb
feat: test semantic release
Ayush8923 Jun 14, 2026
d572b08
feat: test semantic release
Ayush8923 Jun 14, 2026
4df18be
feat: semantic release test
Ayush8923 Jun 14, 2026
c6a6405
feat: semantic release test
Ayush8923 Jun 14, 2026
d66cda1
feat: semantic release test
Ayush8923 Jun 14, 2026
15c5f08
feat: semantic release test
Ayush8923 Jun 14, 2026
f9f03a6
fix(*): pre-release setup correctly
Ayush8923 Jun 14, 2026
91d8db2
fix(release): remove the unwanted if condition
Ayush8923 Jun 14, 2026
f048b03
fix(*): update the pull request template
Ayush8923 Jun 14, 2026
d52e0d4
fix(release): added the concurrency
Ayush8923 Jun 15, 2026
14b5356
Merge branch 'main' of https://github.com/ProjectTech4DevAI/kaapi-fro…
Ayush8923 Jun 17, 2026
0b9c38c
fix(release): added few updates
Ayush8923 Jun 17, 2026
0153b92
fix(*): remove the push event while creating the conventional commit
Ayush8923 Jun 17, 2026
0a19ef9
Merge branch 'main' of https://github.com/ProjectTech4DevAI/kaapi-fro…
Ayush8923 Jun 17, 2026
b2e6539
fix(*): remove the unwanted icons tag
Ayush8923 Jun 17, 2026
b5b89f8
fix(*): remove the push event while creating the conventional commit
Ayush8923 Jun 17, 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
12 changes: 5 additions & 7 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,11 @@ jobs:
- name: Create conventional commit
env:
COMMIT_TYPE: ${{ steps.pr-type.outputs.type }}
BASE_REF: ${{ github.event.pull_request.base.ref }}
run: |
git config user.email "ci@github.com"
git config user.name "GitHub CI"
ORIGINAL_MSG=$(git log -1 --pretty=%s)
git commit --allow-empty -m "${COMMIT_TYPE}: ${ORIGINAL_MSG}"
git push origin "HEAD:${BASE_REF}"

- name: Run semantic-release
env:
Expand Down Expand Up @@ -138,11 +136,11 @@ jobs:
}

const cats = [
{ title: '🚀 Features', types: ['feat'] },
{ title: '🐛 Fixes', types: ['fix'] },
{ title: '🧹 Chores', types: ['chore'] },
{ title: '📚 Documentation', types: ['docs'] },
{ title: '♻️ Refactors', types: ['refactor'] },
{ title: 'Features', types: ['feat'] },
{ title: 'Fixes', types: ['fix'] },
{ title: 'Chores', types: ['chore'] },
{ title: 'Documentation', types: ['docs'] },
{ title: 'Refactors', types: ['refactor'] },
{ title: 'Other Changes', types: ['*'] },
].map(c => ({ ...c, items: [] }));

Expand Down
Loading