We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e7b20f commit 94be4b4Copy full SHA for 94be4b4
2 files changed
src/kernelbot/env.py
@@ -35,7 +35,7 @@
35
36
# Buildkite-specific constants
37
env.BUILDKITE_API_TOKEN = os.getenv("BUILDKITE_API_TOKEN")
38
-env.BUILDKITE_ORG = os.getenv("BUILDKITE_ORG", "gpu-mode")
+env.BUILDKITE_ORG = os.getenv("BUILDKITE_ORG", "mark-saroufim")
39
env.BUILDKITE_PIPELINE = os.getenv("BUILDKITE_PIPELINE", "kernelbot")
40
41
# Directory that will be used for local problem development.
src/libkernelbot/launchers/buildkite.py
@@ -40,7 +40,7 @@
class BuildkiteConfig:
"""Buildkite launcher configuration."""
42
43
- org_slug: str = "gpu-mode"
+ org_slug: str = "mark-saroufim"
44
pipeline_slug: str = "kernelbot"
45
api_token: str = field(default_factory=lambda: os.environ.get("BUILDKITE_API_TOKEN", ""))
46
0 commit comments