Sync .github/workflows directory with azure-sdk-tools repository (#6538)

This commit is contained in:
Azure SDK Bot 2025-04-23 14:19:18 -07:00 committed by GitHub
parent f5fd48d274
commit 068757046f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

29
.github/workflows/post-apiview.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: After APIView
on:
check_run:
types: [completed]
permissions:
pull-requests: write
contents: read
jobs:
post-apiview:
name: After APIView
runs-on: ubuntu-24.04
if: |
github.event.check_run.check_suite.app.name == 'Azure Pipelines' && (
contains(github.event.check_run.name, 'Build Build') ||
contains(github.event.check_run.name, 'Build Analyze') )
steps:
- name: Checkout
uses: actions/checkout@v4
with:
sparse-checkout: 'eng/common'
- name: Create APIView Comment on PR
run: |
. "eng/common/scripts/Helpers/ApiView-Helpers.ps1"
Set-ApiViewCommentForRelatedIssues -HeadCommitish ${{ github.event.check_run.head_sha }} -AuthToken ${{ secrets.GITHUB_TOKEN }}
shell: pwsh