diff options
author | ChristopherHX <christopher.homberger@web.de> | 2022-12-15 18:08:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 18:08:31 +0100 |
commit | b8d7e947cf91e24202326b63821a3ff82a3e2b57 (patch) | |
tree | 921d04c384a0d02fa0d0f0eea2919cac9871980b /pkg/model/step_result.go | |
parent | feat: allow to spawn and run a local reusable workflow (#1423) (diff) | |
download | forgejo-act-b8d7e947cf91e24202326b63821a3ff82a3e2b57.tar.xz forgejo-act-b8d7e947cf91e24202326b63821a3ff82a3e2b57.zip |
refactor: fix savestate in pre steps (#1466)
* refactor: fix savestate in pre steps
* fix pre steps collision
* fix tests
* remove
* enable tests
* Update pkg/runner/action.go
* Rename InterActionState to IntraActionState
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Diffstat (limited to 'pkg/model/step_result.go')
-rw-r--r-- | pkg/model/step_result.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/model/step_result.go b/pkg/model/step_result.go index 49b7705..86e5ebf 100644 --- a/pkg/model/step_result.go +++ b/pkg/model/step_result.go @@ -42,5 +42,4 @@ type StepResult struct { Outputs map[string]string `json:"outputs"` Conclusion stepStatus `json:"conclusion"` Outcome stepStatus `json:"outcome"` - State map[string]string } |