Add github actions based check enforcer (#3922)

This commit is contained in:
Ben Broderick Phillips 2022-09-06 20:09:58 -04:00 committed by GitHub
parent 7b68b31fe1
commit 009fe81672
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.github/workflows/event.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: GitHub Event Handler
on:
check_suite:
types: [completed]
issue_comment:
types: [created]
jobs:
event-handler:
name: Handle ${{ github.event_name }} ${{ github.event.action }} event
runs-on: ubuntu-latest
steps:
- uses: azure/azure-sdk-actions@main
with:
token: ${{ secrets.GITHUB_TOKEN }}