Add github actions based check enforcer (#3922)
This commit is contained in:
parent
7b68b31fe1
commit
009fe81672
16
.github/workflows/event.yml
vendored
Normal file
16
.github/workflows/event.yml
vendored
Normal 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 }}
|
||||
Loading…
Reference in New Issue
Block a user