Skip to content

Commit 2b22671

Browse files
committed
Allow a prehook for restricting workflow execution behaviour
1 parent 934b00c commit 2b22671

17 files changed

Lines changed: 2340 additions & 199 deletions

.mockery.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ packages:
4545
ExecutionHelper:
4646
config:
4747
mockname: "Mock{{.InterfaceName}}"
48+
ExecutionHelperWithRawSecrets:
49+
config:
50+
mockname: "Mock{{.InterfaceName}}"
4851
github.com/smartcontractkit/chainlink-common/pkg/custmsg:
4952
interfaces:
5053
MessageEmitter:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ require (
4545
github.com/smartcontractkit/chain-selectors v1.0.100
4646
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.11-0.20260528204832-58c7145c53f8
4747
github.com/smartcontractkit/chainlink-protos/billing/go v0.0.0-20251024234028-0988426d98f4
48-
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260618082634-432eb85805e7
48+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260622134419-a97fce3dedf3
4949
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b
5050
github.com/smartcontractkit/chainlink-protos/node-platform v0.0.0-20260205130626-db2a2aab956b
5151
github.com/smartcontractkit/chainlink-protos/storage-service v0.3.0

go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/capabilities/v2/actions/confidentialhttp/client.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/capabilities/v2/actions/confidentialworkflow/client.pb.go

Lines changed: 36 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package host
2+
3+
import "context"
4+
5+
type EncryptionKeyFetcher interface {
6+
GetEncryptionKeys(ctx context.Context) ([]string, error)
7+
}

0 commit comments

Comments
 (0)