Skip to content

Commit 35bf095

Browse files
committed
🏗️ refactor(core): integrate issues workflow into new architecture
Moved issues-workflow.ts into the /workflows directory to align with the new scalable architecture. This change centralizes all workflow orchestration logic, improving consistency and maintainability across the codebase. - Moved to . - Updated all relevant imports and exports to reflect the new file location. - Ensured backward compatibility by re-exporting from the legacy path.
1 parent 8c1fa1d commit 35bf095

7 files changed

Lines changed: 1778 additions & 286 deletions

File tree

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Dependencies
2+
node_modules/
3+
.pnp
4+
.pnp.js
5+
.yarn/install-state.gz
6+
7+
# Production & Build Artifacts
8+
build/
9+
dist/
10+
out/
11+
.out/
12+
13+
# Misc
14+
.DS_Store
15+
*.pem
16+
17+
# Logs
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
lerna-debug.log*
22+
23+
# Environment Variables
24+
.env
25+
.env.local
26+
.env.development.local
27+
.env.test.local
28+
.env.production.local
29+
30+
# IDEs and editors
31+
.vscode/*
32+
!.vscode/settings.json
33+
!.vscode/tasks.json
34+
!.vscode/launch.json
35+
!.vscode/extensions.json
36+
*.sublime-workspace
37+
38+
# TypeScript
39+
*.tsbuildinfo
40+
41+
# Test Coverage
42+
coverage/
43+
*.lcov
44+
.nyc_output/
45+
46+
# VS Code Extension
47+
*.vsix

0 commit comments

Comments
 (0)