File tree Expand file tree Collapse file tree 3 files changed +31
-3
lines changed
eventcatalog/src/components/Grids Expand file tree Collapse file tree 3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @eventcatalog/core " : patch
3+ ---
4+
5+ chore(core): removed unused icons on domain grid
Original file line number Diff line number Diff line change 55 types :
66 - completed
77jobs :
8- redeploy :
8+ redeploy-finance :
99 runs-on : ubuntu-latest
10+ if : >
11+ github.event.workflow_run.conclusion == 'success' &&
12+ startsWith(github.event.workflow_run.head_commit.message, 'Version Packages')
1013 steps :
1114 - name : Redeploy EventCatalog Finance Example Catalog
1215 run : curl -f -X POST "$VERCEL_DEPLOY_HOOK_URL"
1316 env :
14- VERCEL_DEPLOY_HOOK_URL : ${{ secrets.VERCEL_DEPLOY_HOOK_FINANCE_EXAMPLE_CATALOG_URL }}
17+ VERCEL_DEPLOY_HOOK_URL : ${{ secrets.VERCEL_DEPLOY_HOOK_FINANCE_EXAMPLE_CATALOG_URL }}
18+ redeploy-healthcare :
19+ runs-on : ubuntu-latest
20+ if : >
21+ github.event.workflow_run.conclusion == 'success' &&
22+ startsWith(github.event.workflow_run.head_commit.message, 'Version Packages')
23+ steps :
24+ - name : Redeploy EventCatalog Healthcare Example Catalog
25+ run : curl -f -X POST "$VERCEL_DEPLOY_HOOK_URL"
26+ env :
27+ VERCEL_DEPLOY_HOOK_URL : ${{ secrets.VERCEL_DEPLOY_HOOK_HEALTHCARE_EXAMPLE_CATALOG_URL }}
28+ redeploy-demo :
29+ runs-on : ubuntu-latest
30+ if : >
31+ github.event.workflow_run.conclusion == 'success' &&
32+ startsWith(github.event.workflow_run.head_commit.message, 'Version Packages')
33+ steps :
34+ - name : Redeploy EventCatalog Demo (FlowMart) Example Catalog
35+ run : curl -f -X POST "$VERCEL_DEPLOY_HOOK_URL"
36+ env :
37+ VERCEL_DEPLOY_HOOK_URL : ${{ secrets.VERCEL_DEPLOY_HOOK_DEMO_FLOWMART_CATALOG_URL }}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {
1111 ArrowsPointingOutIcon ,
1212} from '@heroicons/react/24/outline' ;
1313import { buildUrl } from '@utils/url-builder' ;
14- import { BoxIcon , ArrowRight , ArrowLeft } from 'lucide-react' ;
14+ import { BoxIcon } from 'lucide-react' ;
1515
1616// ============================================
1717// Types
You can’t perform that action at this time.
0 commit comments