Skip to content

Commit dafe208

Browse files
authored
Create audit.yml
1 parent 8c52701 commit dafe208

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

.github/workflows/audit.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
3+
#
4+
# This workflow is an anti-spam measure.
5+
#
6+
7+
name: Audit
8+
run-name: Audit for ${{ github.event_name }} event
9+
10+
on:
11+
discussion_comment:
12+
types:
13+
- created
14+
- edited
15+
- deleted
16+
17+
issue_comment:
18+
types:
19+
- created
20+
- edited
21+
- deleted
22+
23+
### DEPRECATED ###
24+
# pull_request_comment:
25+
# types:
26+
# - created
27+
# - edited
28+
# - deleted
29+
30+
pull_request_review:
31+
types:
32+
- submitted
33+
- edited
34+
- dismissed
35+
36+
pull_request_review_comment:
37+
types:
38+
- created
39+
- edited
40+
- deleted
41+
42+
watch:
43+
types:
44+
- started
45+
46+
jobs:
47+
record-comment:
48+
name: Recording Comment
49+
runs-on: ubuntu-latest
50+
steps:
51+
- name: Dump Event
52+
run: echo "${EVENT}"
53+
env:
54+
EVENT: ${{ toJSON(github.event) }}

0 commit comments

Comments
 (0)