Merge branch 'main' into launch-config
This commit is contained in:
Коммит
59453bf285
|
@ -1,6 +1,6 @@
|
|||
name: "CodeQL analysis"
|
||||
|
||||
on: [push, pull_request]
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -69,7 +69,7 @@ class Okta:
|
|||
try:
|
||||
username = getattr(user.profile, self.USERNAME_ATTRIBUTE)
|
||||
username = username.split("@")[0]
|
||||
username = re.sub('[^0-9a-zA-Z-]+', '-', username)
|
||||
username = re.sub("[^0-9a-zA-Z-]+", "-", username)
|
||||
member_list.append(
|
||||
{
|
||||
"username": username,
|
||||
|
|
Загрузка…
Ссылка в новой задаче