Replies: 2 comments
|
Thank you for your interest in contributing to our community! We currently only accept discussions created through the GitHub UI using our provided discussion templates. Please re-submit your discussion by navigating to the appropriate category and using the template provided. This discussion has been closed because it was not submitted through the expected format. If you believe this was a mistake, please reach out to the maintainers. |
|
This is a known issue where GitHub Actions' workflow dispatcher retains a stale/corrupted pointer to an invalid workflow path ( Here are the proven methods to force-clear this orphan workflow: Method 1: Re-create the Phantom Path to Reset the Parser (Most Reliable)The GitHub Actions parser is failing because the registered path
Method 2: Force-Disable via the REST APICall GitHub's workflow state endpoint to explicitly toggle the workflow into a disabled state so the event listener skips it: gh api -X PUT /repos/mhaawi/Feasibility-Study/actions/workflows/356051154/disableVerify the state transitions to gh api /repos/mhaawi/Feasibility-Study/actions/workflows/356051154 --jq .stateMethod 3: Invalidate Default Branch Check SuiteIf the registry remains locked, creating a new temporary branch, setting it as default in Repository Settings, and deleting/recreating |
Uh oh!
There was an error while loading. Please reload this page.
Summary
Private repo
mhaawi/Feasibility-Studycannot start any GitHub Actions run. Everypushandworkflow_dispatchends instartup_failurein 0–1s withpath: "BuildFailed"and an empty workflow name. Real workflows (.github/workflows/maven.yml,sync-prod-env.yml,ping.yml) never create jobs.This matches the known orphaned/deleted Actions workflow registry bug.
Orphan workflow
356051154GET /repos/mhaawi/Feasibility-Study/actions/workflows/356051154name:""path:BuildFailedstate:deletedcreated_at:2026-09-11T22:06:23+03:00html_url: https://github.com/mhaawi/Feasibility-Study/blob/main/BuildFailedGET /repos/mhaawi/Feasibility-Study/actions/workflowsPUT .../disable→ 403Unable to disable a workflow that is not active.PUT .../enable→ 403Unable to enable a workflow that is not active.DELETE .../356051154→ 404Example failed runs
prodpush,workflow_id356051154,pathBuildFailed)pingworkflow_dispatch, alsostartup_failure)What we already tried
Deploy to Tomcatfile (.github/workflows/old-maven.yml)maven.ymlBuildFailedfile and a minimalping.ymlRequest
Please purge or repair Actions workflow id 356051154 on
mhaawi/Feasibility-Studyso normal workflows can start again.All reactions