mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 16:48:58 +08:00
use the first index
Contributes to CURA-9365
This commit is contained in:
parent
36c4c56abb
commit
ba1e4eb39f
2
.github/workflows/conan-recipe-version.yml
vendored
2
.github/workflows/conan-recipe-version.yml
vendored
@ -85,7 +85,7 @@ jobs:
|
|||||||
elif repo.active_branch.name == "main" or repo.active_branch.name == "master":
|
elif repo.active_branch.name == "main" or repo.active_branch.name == "master":
|
||||||
channel = 'testing'
|
channel = 'testing'
|
||||||
else:
|
else:
|
||||||
channel = repo.active_branch.name.split("_").replace("-", "_").lower()
|
channel = repo.active_branch.name.split("_")[0].replace("-", "_").lower()
|
||||||
|
|
||||||
if event_name == "pull_request":
|
if event_name == "pull_request":
|
||||||
channel = f"pr_{issue_number}"
|
channel = f"pr_{issue_number}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user