You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Caused by: com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type de.otto.platform.gitactionboard.adapters.service.job.RunStatus from String "waiting": not one of the values accepted for Enum class: [queued, in_progress, completed]
Check the workflow status in Github, it is set to "waiting"
Check the gitactionboard source code, backend/src/main/java/de/otto/platform/gitactionboard/adapters/service/job/RunStatus.java, waiting is not part of the enum
Workflows which are in the status Waiting will cause a java error as they are not part of the allowed enum.
Steps to reproduce the behavior:
Caused by: com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type
de.otto.platform.gitactionboard.adapters.service.job.RunStatusfrom String "waiting": not one of the values accepted for Enum class: [queued, in_progress, completed]
Expected behavior
Support for the "waiting" workflow status, but ideally all statuses as listed on https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28
The text was updated successfully, but these errors were encountered: