You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add dependency checker comment
* Add comment when dependabot gets stale to recreate
* Add opened check to prevent multiple comments
* Lint fix
* Add a comment about coverage
Copy file name to clipboardExpand all lines: .github/workflows/dependabot-auto-merge.yml
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,3 +30,16 @@ jobs:
30
30
env:
31
31
PR_URL: ${{ github.event.pull_request.html_url }}
32
32
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
+
34
+
- name: Request Cursor review
35
+
if: github.event.action == 'opened'
36
+
run: |
37
+
gh pr comment "$PR_URL" --body "@cursoragent can you review against the current code and outline potential impacts based on the changelogs of the update?
38
+
39
+
Can you check the test coverage and ensure that the new code is covered?
40
+
Can you think through if this dependency is still needed or if there's better practices used elsewhere.
41
+
42
+
Can you draft a separate PR with any fixes that might be needed?"
0 commit comments