Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/api-diff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Analyze API Changes

on:
pull_request: {}

permissions: {}

jobs:
root-module:
name: Root Module
permissions:
pull-requests: write
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: false

- uses: smartcontractkit/.github/actions/apidiff-go@apidiff-go/v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
go-mod-paths: "./"
enforce-compatible: "false" # dont fail on breaking changes
Loading