Skip to content

Commit 009fe81

Browse files
authored
Add github actions based check enforcer (#3922)
1 parent 7b68b31 commit 009fe81

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/event.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: GitHub Event Handler
2+
3+
on:
4+
check_suite:
5+
types: [completed]
6+
issue_comment:
7+
types: [created]
8+
9+
jobs:
10+
event-handler:
11+
name: Handle ${{ github.event_name }} ${{ github.event.action }} event
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: azure/azure-sdk-actions@main
15+
with:
16+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)