Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/certifi-2023.7.22
Browse files Browse the repository at this point in the history
  • Loading branch information
robandpdx authored Aug 14, 2023
2 parents 93e0a5d + 15c0645 commit 2bab490
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "CodeQL analysis"

on: [push, pull_request]
on: [pull_request]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion githubapp/okta.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def get_or_create_eventloop():
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,
Expand Down

0 comments on commit 2bab490

Please sign in to comment.