Lowercase username

Contributes to CURA-9365

(cherry picked from commit f5a559179b)
This commit is contained in:
j.spijker@ultimaker.com 2022-07-14 14:55:54 +02:00 committed by Jelle Spijker
parent 96c4e15c03
commit 77979c384d
No known key found for this signature in database
GPG key ID: 6662DC033BE6B99A

View file

@ -68,7 +68,7 @@ jobs:
from git import Repo
repo = Repo('.')
user = "${{ github.repository_owner }}"
user = "${{ github.repository_owner }}".lower()
project_name = "${{ inputs.project_name }}"
event_name = "${{ github.event_name }}"
issue_number = "${{ github.ref }}".split('/')[2]