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
22 changes: 22 additions & 0 deletions .github/workflows/api-gate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Measures what a pull request does to the public API surface, and merges the
# binding updater's work when nothing anyone depends on has moved.
#
# The measurement runs on every pull request, including human ones -- knowing
# which symbols a change adds or removes is useful whoever wrote it. Only the
# merge is restricted to the agent.

name: API Gate

on:
pull_request:
branches: [ "main" ]

jobs:
api:
uses: EvergineTeam/Evergine.Bindings/.github/workflows/binding-api-gate.yml@v1
with:
binding-project: "VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj"
auto-merge: true
app-client-id: ${{ vars.APP_CLIENT_ID }}
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
Loading