File tree 1 file changed +35
-0
lines changed
1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ # -*- mode: yaml -*-
2
+
3
+ manifest :
4
+ version : 1.0
5
+
6
+ triggers :
7
+ on :
8
+ - pr_created
9
+
10
+ automations :
11
+ comment_ai_assistance_prompt :
12
+ # Post a comment for all PRs to prompt the PR author to indicate whether they used AI to assist coding in this PR
13
+ # Only do this if there's no existing AI-related label and we haven't asked before
14
+ if :
15
+ - false
16
+ run :
17
+ - action : add-comment@v1
18
+ args :
19
+ comment : |
20
+ Please mark which AI tools you used for this PR by checking the appropriate boxes:
21
+
22
+ - [ ] GitHub Copilot
23
+ - [ ] Cursor
24
+ - [ ] ChatGPT
25
+ - [ ] Tabnine
26
+ - [ ] JetBrains AI Assistant
27
+ - [ ] VSCode IntelliCode
28
+ - [ ] Claude
29
+ - [ ] Gemini
30
+ - [ ] Other AI tool
31
+ - [ ] No AI tools were used
32
+
33
+ Tip: If you want to avoid this comment in the future, you can add a label of the format `🤖 ai-*` when creating your PR.
34
+
35
+ IS_NOT_A_BOT : {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
You can’t perform that action at this time.
0 commit comments