Skip to content

Commit 44c77c2

Browse files
committed
Added protobuf ci
1 parent 510243c commit 44c77c2

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/ci-protobuf.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI ProtoBuf
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
buf-breaking:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout repo
11+
uses: actions/checkout@v4
12+
13+
- name: Setup buf
14+
uses: bufbuild/buf-setup-action@35c243d7f2a909b1d4e40399b348a7fdab27d78d # v1.34.0
15+
with:
16+
github_token: ${{ secrets.GITHUB_TOKEN }}
17+
18+
- name: Run buf breaking
19+
uses: bufbuild/buf-breaking-action@c57b3d842a5c3f3b454756ef65305a50a587c5ba # v1.1.4
20+
env:
21+
REPO_URL: https://github.com/${{ github.repository }}/capabilities
22+
BASE_BRANCH: ${{ github.base_ref }}
23+
with:
24+
against: "${REPO_URL}.git#branch=${BASE_BRANCH}"

capabilities/writetarget/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Generalized Write Target
2+
3+
This framework allows for any chain to implement the write target with minimal friction simply by implementing the interface [target_strategy](https://github.com/smartcontractkit/chainlink-framework/blob/0647c811e8e34635171517e64571650c59402d6a/capabilities/writetarget/write_target.go#L50-L57)

0 commit comments

Comments
 (0)