From f053dba79682815a338e5c29450b4e9c3e72f583 Mon Sep 17 00:00:00 2001 From: Erik Burton Date: Wed, 27 May 2026 11:45:33 -0700 Subject: [PATCH] feat(ci): apidiff-go --- .github/workflows/api-diff.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/api-diff.yml diff --git a/.github/workflows/api-diff.yml b/.github/workflows/api-diff.yml new file mode 100644 index 000000000..49b7eba96 --- /dev/null +++ b/.github/workflows/api-diff.yml @@ -0,0 +1,24 @@ +name: Analyze API Changes + +on: + push: + branches: + - main + pull_request: + +permissions: + contents: read + pull-requests: write + +jobs: + api-diff: + uses: smartcontractkit/.github/.github/workflows/reusable-apidiff-go-analysis.yml@reusable-apidiff-go-analysis/v1 + with: + file-patterns: | + **/*.go + **/go.mod + **/go.sum + module-patterns: | + ** + !**/examples/** + enforce-compatible: false