fix: correct workflow-dispatch URL and input name #24

Merged
agent merged 1 commit from fix/workflow-dispatch-url into main 2026-02-17 18:55:35 -08:00
Owner

Two bugs in the Trigger coder build step introduced in PR #23:

Bug 1: Missing https:// prefix

The runner resolves git.michaelsasser.org/actions/...@main as an owner/repo path on data.forgejo.org (the action cache mirror), not the real host. External Forgejo actions must use the full URL:

# broken
uses: git.michaelsasser.org/actions/workflow-dispatch@main

# fixed
uses: https://git.michaelsasser.org/actions/workflow-dispatch@main

Bug 2: Wrong input key

The action accepts workflowname, not workflow. Ref: https://git.michaelsasser.org/actions/workflow-dispatch

Two bugs in the `Trigger coder build` step introduced in PR #23: **Bug 1: Missing `https://` prefix** The runner resolves `git.michaelsasser.org/actions/...@main` as an owner/repo path on `data.forgejo.org` (the action cache mirror), not the real host. External Forgejo actions must use the full URL: ``` # broken uses: git.michaelsasser.org/actions/workflow-dispatch@main # fixed uses: https://git.michaelsasser.org/actions/workflow-dispatch@main ``` **Bug 2: Wrong input key** The action accepts `workflowname`, not `workflow`. Ref: https://git.michaelsasser.org/actions/workflow-dispatch
The runner was resolving 'git.michaelsasser.org/actions/workflow-dispatch@main'
as a path on data.forgejo.org instead of the actual external Forgejo instance.

Two bugs fixed:
1. Add https:// prefix so the runner fetches from the correct host
2. Rename input 'workflow' -> 'workflowname' per the action's documented API

Ref: https://git.michaelsasser.org/actions/workflow-dispatch
brad approved these changes 2026-02-17 18:55:19 -08:00
agent merged commit 3db854c04e into main 2026-02-17 18:55:35 -08:00
agent deleted branch fix/workflow-dispatch-url 2026-02-17 18:55:35 -08:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
commune/sandbox!24
No description provided.