Skip to content

Commit 17489f3

Browse files
committed
fix(backstage): allow all entity kinds in catalog rules
Updated catalog.rules to allow all kinds (`'*'`) instead of a fixed list to support custom entities.
1 parent a7b2e4c commit 17489f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backstage/app-config.production.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ catalog:
5353
entityFilename: catalog-info.yaml
5454
pullRequestBranchName: backstage-integration
5555
rules:
56-
- allow: [Component, System, API, Resource, Location]
56+
- allow: ['*']
5757
locations:
5858
# All Templates
5959
- type: url

backstage/app-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ catalog:
7676
entityFilename: catalog-info.yaml
7777
pullRequestBranchName: backstage-integration
7878
rules:
79-
- allow: [Component, System, API, Resource, Location]
79+
- allow: ['*']
8080
locations:
8181
# All Templates
8282
- type: url

0 commit comments

Comments
 (0)