Skip to content

Commit

Permalink
ci: adds a workflow to validate public API surface changes
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Aug 16, 2024
1 parent 0df489c commit 1b69b8f
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/validatePublicAPISurface.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Validate Public API surface changes

on:
workflow_dispatch:
push:
pull_request:
branches: [ 'main' ]

permissions:
contents: read
pull-requests: write
issues: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: microsoftgraph/kiota-dom-export-diff-tool/export@main
id: generatePatch
- uses: microsoftgraph/kiota-dom-export-diff-tool/tool@main
if: ${{ steps.generatePatch.outputs.patchFilePath != '' }}
with:
path: ${{ steps.generatePatch.outputs.patchFilePath }}
fail-on-removal: true
id: diff
- uses: microsoftgraph/kiota-dom-export-diff-tool/comment@main
if: ${{ always() && steps.generatePatch.outputs.patchFilePath != '' && steps.diff.outputs.explanations != '' && github.event_name == 'pull_request' }}
continue-on-error: true
with:
comment: ${{ steps.diff.outputs.explanations }}
prNumber: ${{ github.event.pull_request.number }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload patch file as artifact
if: always()
uses: actions/upload-artifact@v4
continue-on-error: true
with:
name: patch
path: '*.patch'

0 comments on commit 1b69b8f

Please sign in to comment.