forgejo/labeler: automatically flag Vulkan-related commits #20118

This commit is contained in:
Lynne
2025-12-07 19:15:29 +01:00
parent 9849a274df
commit 3ed8c1eb8a
2 changed files with 6 additions and 1 deletions

View File

@@ -11,7 +11,8 @@ module.exports = async ({github, context}) => {
'avutil': 'avutil',
'swresample': 'swresample',
'swscale': 'swscale',
'fftools': 'CLI'
'fftools': 'CLI',
'vulkan': 'vulkan'
};
async function isOrgMember(username) {

View File

@@ -29,3 +29,7 @@ swscale:
CLI:
- changed-files:
- any-glob-to-any-file: 'fftools/**'
vulkan:
- changed-files:
- any-glob-to-any-file: '**/*vulkan*'