Skip to content

Commit 737c087

Browse files
authored
Merge branch 'main' into code-update-quality
2 parents 3a30989 + 7d04221 commit 737c087

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.cm/overrides.cm

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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 }}

0 commit comments

Comments
 (0)