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
For the GitHub Local Actions extension, I am working on a pull request here to add support for displaying job and step level status for an executing workflow. As part of this, I am parsing the output of the command and always including the --json field. However, there are a few missing fields and messages to support this.
The following new JSON fields will be needed:
Add stepResult for Pre stage steps to know if the pre stage succeeded or failed (Post stage already has this so it makes sense to keep it consistent).
Add setupResult and cleanupResult field for the final setup and final clean up message to know if it succeeded or failed.
Add the ability to distinguish setup steps from clean up steps. For example, this could be through some field called type that is either setup or cleanup.
Another additional JSON message that would be very helpful would be when a job is skipped or a step is skipped. This is not as a high priority as the above 3 requirements, but it would make it very easy to display skipped jobs/steps in the tree view.
In the PRs current state, I am unable to tell the pre stage step status, Complete Job status (aka clean up), and the Setup Job status (I temporarily marked it as always successful for now, but this is not ideal):
The text was updated successfully, but these errors were encountered:
Act version
act version 0.2.69
Feature description
For the GitHub Local Actions extension, I am working on a pull request here to add support for displaying job and step level status for an executing workflow. As part of this, I am parsing the output of the command and always including the
--json
field. However, there are a few missing fields and messages to support this.The following new JSON fields will be needed:
stepResult
forPre
stage steps to know if the pre stage succeeded or failed (Post
stage already has this so it makes sense to keep it consistent).setupResult
andcleanupResult
field for the final setup and final clean up message to know if it succeeded or failed.type
that is eithersetup
orcleanup
.Another additional JSON message that would be very helpful would be when a job is skipped or a step is skipped. This is not as a high priority as the above 3 requirements, but it would make it very easy to display skipped jobs/steps in the tree view.
In the PRs current state, I am unable to tell the pre stage step status,
Complete Job
status (aka clean up), and theSetup Job
status (I temporarily marked it as always successful for now, but this is not ideal):The text was updated successfully, but these errors were encountered: