[PR #9] [MERGED] feat: github actions #13

Closed
opened 2026-03-03 13:58:00 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/labring/tentix/pull/9
Author: @Dilettante258
Created: 5/22/2025
Status: Merged
Merged: 5/23/2025
Merged by: @fanux

Base: mainHead: action-test


📝 Commits (10+)

  • baee38e feat: simple ai integrate
  • 1c56b23 feat: change ticketId to nanoid string type
  • 2be02db feat: i18n in modal
  • 2cdf4f0 feat: select workOrder category
  • 7e584ab action test
  • 2e7a5e5 action test2
  • ed9c09d fix: Uncaught ReferenceError
  • 08c035a fix: modify manualChunks
  • 86d0860 feat: refactor for better typecheck
  • 5e20e8f fix: type error in ticket useTicketFavorites

📊 Changes

196 files changed (+1767 additions, -1859 deletions)

View changed files

📝 .github/workflows/build.yml (+20 -5)
.github/workflows/docker-publish.yml (+35 -0)
📝 .gitignore (+1 -0)
📝 Dockerfile (+1 -1)
📝 Makefile (+2 -2)
📝 bun.lock (+83 -21)
📝 frontend/package.json (+3 -1)
📝 frontend/src/_provider/index.tsx (+1 -1)
📝 frontend/src/components/chart-area-interactive.tsx (+5 -5)
📝 frontend/src/components/chat/content-renderer.tsx (+3 -3)
frontend/src/components/chat/index.tsx (+0 -7)
📝 frontend/src/components/chat/message-item.tsx (+8 -9)
📝 frontend/src/components/chat/staff/index.tsx (+26 -9)
📝 frontend/src/components/chat/staff/message-input.tsx (+1 -1)
📝 frontend/src/components/chat/user/index.tsx (+0 -4)
📝 frontend/src/components/chat/user/message-input.tsx (+1 -1)
📝 frontend/src/components/docs/code-block.tsx (+1 -1)
📝 frontend/src/components/docs/solution-layout.tsx (+1 -1)
frontend/src/components/index.tsx (+0 -9)
📝 frontend/src/components/staff/dashboard-sidebar.tsx (+2 -2)

...and 80 more files

📄 Description

  • feat: Refactored project structure for better typechecking
  • fix: type error in ticket useTicketFavorites

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/labring/tentix/pull/9 **Author:** [@Dilettante258](https://github.com/Dilettante258) **Created:** 5/22/2025 **Status:** ✅ Merged **Merged:** 5/23/2025 **Merged by:** [@fanux](https://github.com/fanux) **Base:** `main` ← **Head:** `action-test` --- ### 📝 Commits (10+) - [`baee38e`](https://github.com/labring/tentix/commit/baee38efde9ef54a8a2966a1eccae4edb70c1c5c) feat: simple ai integrate - [`1c56b23`](https://github.com/labring/tentix/commit/1c56b230671788e35332ea8975239af77320eafb) feat: change ticketId to nanoid string type - [`2be02db`](https://github.com/labring/tentix/commit/2be02dbe23c05286c37f28c5aa63c5983af53d53) feat: i18n in modal - [`2cdf4f0`](https://github.com/labring/tentix/commit/2cdf4f0a70acaf9b23bc22c709510f8c23031747) feat: select workOrder category - [`7e584ab`](https://github.com/labring/tentix/commit/7e584abc6b11a7ac22156cce6d7147fb76981a06) action test - [`2e7a5e5`](https://github.com/labring/tentix/commit/2e7a5e5086af1a12d754cfbfc43bca450925bd19) action test2 - [`ed9c09d`](https://github.com/labring/tentix/commit/ed9c09d2e157cf48cbe908e7e1adf673016c1baa) fix: Uncaught ReferenceError - [`08c035a`](https://github.com/labring/tentix/commit/08c035a37e5bc4f5a27b73e9d4163be3acfe39e9) fix: modify manualChunks - [`86d0860`](https://github.com/labring/tentix/commit/86d0860c366075aa9235bfd7cb27d7696af5b4ec) feat: refactor for better typecheck - [`5e20e8f`](https://github.com/labring/tentix/commit/5e20e8f6dff3e3e5347df5dd64b6807e06c321f1) fix: type error in ticket useTicketFavorites ### 📊 Changes **196 files changed** (+1767 additions, -1859 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build.yml` (+20 -5) ➕ `.github/workflows/docker-publish.yml` (+35 -0) 📝 `.gitignore` (+1 -0) 📝 `Dockerfile` (+1 -1) 📝 `Makefile` (+2 -2) 📝 `bun.lock` (+83 -21) 📝 `frontend/package.json` (+3 -1) 📝 `frontend/src/_provider/index.tsx` (+1 -1) 📝 `frontend/src/components/chart-area-interactive.tsx` (+5 -5) 📝 `frontend/src/components/chat/content-renderer.tsx` (+3 -3) ➖ `frontend/src/components/chat/index.tsx` (+0 -7) 📝 `frontend/src/components/chat/message-item.tsx` (+8 -9) 📝 `frontend/src/components/chat/staff/index.tsx` (+26 -9) 📝 `frontend/src/components/chat/staff/message-input.tsx` (+1 -1) 📝 `frontend/src/components/chat/user/index.tsx` (+0 -4) 📝 `frontend/src/components/chat/user/message-input.tsx` (+1 -1) 📝 `frontend/src/components/docs/code-block.tsx` (+1 -1) 📝 `frontend/src/components/docs/solution-layout.tsx` (+1 -1) ➖ `frontend/src/components/index.tsx` (+0 -9) 📝 `frontend/src/components/staff/dashboard-sidebar.tsx` (+2 -2) _...and 80 more files_ </details> ### 📄 Description - feat: Refactored project structure for better typechecking - fix: type error in ticket useTicketFavorites --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 13:58:00 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/tentix#13
No description provided.