Skip to content

Commit dc87f5f

Browse files
feat: add labels feature
1 parent 65c28f2 commit dc87f5f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

website/_data/catalog.data.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ function extractUsedFeatures(yamls: Record<string, unknown>[]): string[] {
107107
if ('transform' in yaml) {
108108
features.add('transform')
109109
}
110+
if ('labels' in yaml) {
111+
features.add('labels')
112+
}
110113
}
111114
}
112115
return [...features]

website/src/catalog/data.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ export const features = [
8484
'rewriters',
8585
'transform',
8686
'constraints',
87-
'utils'
87+
'utils',
88+
'labels',
8889
]
8990

9091
export function serialize(data: Filter): string {

0 commit comments

Comments
 (0)