Skip to content

Commit 6ffae48

Browse files
committed
Add code of conduct checker
The purpose of this is to give our trainees experience of handling bot comments.
1 parent 201a38e commit 6ffae48

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Check Code of Conduct
2+
on:
3+
pull_request_target:
4+
types:
5+
- opened
6+
- edited
7+
- reopened
8+
9+
jobs:
10+
check_code_of_conduct:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: CodeYourFuture/actions/validate-pr-metadata@main
15+
with:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
use_dummy_code_of_conduct_validator: true

0 commit comments

Comments
 (0)