Skip to content

Commit

Permalink
fix: missing github scaffolder action
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswuerbach committed May 10, 2024
1 parent ea24287 commit b3fa668
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"@backstage/plugin-permission-node": "^0.7.28",
"@backstage/plugin-proxy-backend": "^0.4.15",
"@backstage/plugin-scaffolder-backend": "^1.22.4",
"@backstage/plugin-scaffolder-backend-module-github": "^0.2.7",
"@backstage/plugin-scaffolder-node": "^0.4.3",
"@backstage/plugin-search-backend": "^1.5.7",
"@backstage/plugin-search-backend-module-catalog": "^0.1.22",
Expand Down
9 changes: 6 additions & 3 deletions packages/backend/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const backend = createBackend();

backend.add(import('@backstage/plugin-app-backend/alpha'));
backend.add(import('@backstage/plugin-proxy-backend/alpha'));
backend.add(import('@backstage/plugin-scaffolder-backend/alpha'));
backend.add(import('@backstage/plugin-techdocs-backend/alpha'));

// auth plugin
Expand All @@ -38,11 +37,15 @@ backend.add(import('@backstage/plugin-search-backend/alpha'));
backend.add(import('@backstage/plugin-search-backend-module-catalog/alpha'));
backend.add(import('@backstage/plugin-search-backend-module-techdocs/alpha'));

// scaffolder plugin
backend.add(import('@backstage/plugin-scaffolder-backend/alpha'));
backend.add(import('@backstage/plugin-scaffolder-backend-module-github'));
// backend:get-environment used in humanitec templates
backend.add(import('./actions/get-environment'));

// humanitec
backend.add(import('@humanitec/backstage-plugin-backend'));
backend.add(import('@humanitec/backstage-plugin-scaffolder-backend-module'));

// backend:get-environment used in humanitec templates
backend.add(import('./actions/get-environment'));

backend.start();

0 comments on commit b3fa668

Please sign in to comment.