Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Composite Run Steps Refactoring #591
Composite Run Steps Refactoring #591
Changes from 13 commits
3251ead
06adbae
9fc6f80
50d4f9d
bb84921
eb0e456
c63709d
2067778
96ac86f
f322697
2c157b4
256e455
e42a7c3
49ba1c8
45639a2
87d3030
e0561ad
25bd4b1
f5680aa
74ba0eb
8bf57f7
b0d92bb
309e09b
7be28ab
7d95fa6
16df485
79e572f
ce52070
dc36e2e
3d4f7bd
bc613a0
a0af7d6
81bdee6
44ed247
3c2d8f1
868a42a
61a0049
df4e4c1
1cafbf0
470708d
3915791
a40c07b
7d96e5d
8714315
ca79af5
b6c3091
22c4cb9
89002ce
0ad860e
28db0aa
dd476b8
d9e5109
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need to distinguish between this step timing-out vs the outer step timing-out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i don't think timeout will work properly right now, since the
step.ExecutionContext.SetTimeout(timeout);
is called on the StepRunner for the whole composite actionThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll add a TODO so that I remember to do this for
timeout-minutes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes are to revert the workaround we used to flow Env to composite actions. This is now handled in the Composite Steps Runner.