UiPath / Community.Activities

Repository of Windows Workflow Foundation Activities for UiPath Community
https://www.uipath.com/community
234 stars 139 forks source link
activities autohotkey workflow

Guidelines for contribuing to this repository

Anatomy of an Activity pack

Assembly and Package Info

Testing and deploying

Non-breaking changes:

Breaking changes:

(Inspired by https://github.com/dotnet/corefx/blob/master/Documentation/coding-guidelines/breaking-changes.md)

To help triage breaking changes, we classify them into three buckets:

  1. Public Contract
  2. Reasonable Grey Area
  3. Unlikely Grey Area

Bucket 1: Public Contract

Clear violation of public contract.

Examples:

Bucket 2: Reasonable Grey Area

Change of behavior that customers would have reasonably depended on.

Examples:

These require judgment: how predictable, obvious, consistent was the behavior?

Bucket 3: Unlikely Grey Area

Change of behavior that customers could have depended on, but probably wouldn't.

Examples:

As with type 2 changes, these require judgment: what is reasonable and what’s not?

What This Means for Contributors