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
fix(IPullRequest): update property accessors to use TryGetValue
- Update `DeleteLocalOnSuccess` property to use `TryGetValue<bool?>(() => DeleteLocalOnSuccess) ?? false`
- Update `Draft` property to use `TryGetValue<bool?>(() => Draft) ?? false`
- Update `Title` property to use `TryGetValue(() => Title)` and switch expression for branch type
- Update `Description` property to use `TryGetValue(() => Description)`
- Add `FinishChore` method to implement `IDoChoreWorkflow` interface
0 commit comments