We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b58225d commit bc44ccbCopy full SHA for bc44ccb
1 file changed
src/discord-cluster-manager/launchers/github.py
@@ -165,7 +165,7 @@ async def trigger(self, inputs: dict) -> bool:
165
raise ValueError(f"Could not find workflow {self.workflow_file}") from e
166
167
branch_name = get_github_branch_name()
168
- logger.debug(
+ logger.info(
169
"Dispatching workflow %s on branch %s with inputs %s",
170
self.workflow_file,
171
branch_name,
@@ -174,6 +174,7 @@ async def trigger(self, inputs: dict) -> bool:
174
success = await asyncio.to_thread(workflow.create_dispatch, branch_name, inputs=inputs)
175
176
if success:
177
+ logger.info("Waiting for workflow to start...")
178
await asyncio.sleep(2)
179
180
def get_runs_sync():
0 commit comments