https://infrastructure.fedoraproject.org/infra/ansible/roles/ipsilon/files/ Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
14 lines
432 B
Python
14 lines
432 B
Python
from __future__ import absolute_import
|
|
|
|
from ipsilon.providers.openidc.plugins.common import OpenidCExtensionBase
|
|
|
|
|
|
class OpenidCExtension(OpenidCExtensionBase):
|
|
name = 'kerneltest'
|
|
display_name = 'Fedora Kernel tests'
|
|
scopes = {
|
|
'https://github.com/jmflinuxtx/kerneltest-harness/oidc/upload_test_run': {
|
|
'display_name': 'Upload the results of a test run',
|
|
'claims': [],
|
|
},
|
|
}
|