-
Notifications
You must be signed in to change notification settings - Fork 12.2k
324 lines (276 loc) · 13.7 KB
/
devin-conflict-resolver.yml
File metadata and controls
324 lines (276 loc) · 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
name: Devin PR Conflict Resolver
on:
push:
branches:
- main
workflow_dispatch:
inputs:
pr_number:
description: 'PR number to resolve conflicts for (optional, bypasses maintainer access check for fork PRs)'
required: false
type: string
permissions:
contents: read
pull-requests: write
jobs:
check-conflicts:
name: Check Open PRs for Conflicts
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: Get open PRs and check for conflicts
id: check-prs
uses: actions/github-script@v7
env:
INPUT_PR_NUMBER: ${{ inputs.pr_number }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const { owner, repo } = context.repo;
const manualPrNumber = process.env.INPUT_PR_NUMBER ? parseInt(process.env.INPUT_PR_NUMBER, 10) : null;
const query = `
query($owner: String!, $repo: String!, $cursor: String) {
repository(owner: $owner, name: $repo) {
pullRequests(states: OPEN, first: 100, after: $cursor) {
pageInfo {
hasNextPage
endCursor
}
nodes {
number
title
mergeable
isDraft
headRefName
baseRefName
url
headRepository {
owner {
login
}
name
}
maintainerCanModify
labels(first: 10) {
nodes {
name
}
}
}
}
}
}
`;
const allPRs = [];
let cursor = null;
do {
const result = await github.graphql(query, { owner, repo, cursor });
const { nodes, pageInfo } = result.repository.pullRequests;
allPRs.push(...nodes);
cursor = pageInfo.hasNextPage ? pageInfo.endCursor : null;
} while (cursor);
console.log(`Found ${allPRs.length} open PRs via GraphQL`);
if (manualPrNumber) {
console.log(`Manual PR number provided: ${manualPrNumber}`);
}
const conflictingPRs = [];
const unknownPRs = [];
function processPR(pr, mergeableStatus) {
const isTargetPR = manualPrNumber && pr.number === manualPrNumber;
const isFork = pr.headRepository?.owner?.login !== owner;
if (!isTargetPR && pr.isDraft) {
console.log(`PR #${pr.number} is a draft, skipping`);
return { skip: true };
}
if (!isTargetPR && isFork) {
console.log(`PR #${pr.number} is from a fork, skipping`);
return { skip: true };
}
if (!isTargetPR) {
const hasDevinLabel = pr.labels.nodes.some(label => label.name === 'devin-conflict-resolution');
if (hasDevinLabel) {
console.log(`PR #${pr.number} already has devin-conflict-resolution label, skipping`);
return { skip: true };
}
}
if (mergeableStatus === 'CONFLICTING' || (isTargetPR && mergeableStatus !== 'MERGEABLE')) {
const headRepoOwner = pr.headRepository?.owner?.login || owner;
const headRepoName = pr.headRepository?.name || repo;
if (isTargetPR) {
console.log(`PR #${pr.number} manually targeted for conflict resolution${isFork ? ' (from fork)' : ''}`);
} else {
console.log(`PR #${pr.number} has conflicts`);
}
return {
conflict: true,
data: {
number: pr.number,
title: pr.title,
head_ref: pr.headRefName,
base_ref: pr.baseRefName,
html_url: pr.url,
is_fork: isFork,
head_repo_owner: headRepoOwner,
head_repo_name: headRepoName,
is_manual: isTargetPR
},
isTargetPR
};
} else if (mergeableStatus === 'UNKNOWN') {
return { unknown: true, isTargetPR };
} else {
console.log(`PR #${pr.number} has no conflicts (mergeable: ${mergeableStatus})`);
return { skip: true };
}
}
for (const pr of allPRs) {
const result = processPR(pr, pr.mergeable);
if (result.conflict) {
conflictingPRs.push(result.data);
if (result.isTargetPR) break;
} else if (result.unknown) {
console.log(`PR #${pr.number} mergeable status is still being computed`);
unknownPRs.push(pr);
}
}
if (unknownPRs.length > 0) {
console.log(`\n${unknownPRs.length} PRs have UNKNOWN mergeable status, waiting 20 seconds before retrying...`);
await new Promise(resolve => setTimeout(resolve, 20000));
console.log(`Retrying ${unknownPRs.length} PRs via REST API...`);
for (const pr of unknownPRs) {
try {
const { data } = await github.rest.pulls.get({
owner,
repo,
pull_number: pr.number
});
let mergeableStatus;
if (data.mergeable === true) {
mergeableStatus = 'MERGEABLE';
} else if (data.mergeable === false) {
mergeableStatus = 'CONFLICTING';
} else {
mergeableStatus = 'UNKNOWN';
}
console.log(`PR #${pr.number} retry result: mergeable=${mergeableStatus}`);
const result = processPR(pr, mergeableStatus);
if (result.conflict) {
conflictingPRs.push(result.data);
if (result.isTargetPR) break;
} else if (result.unknown) {
console.log(`PR #${pr.number} still has UNKNOWN status after retry`);
}
} catch (error) {
console.error(`Error retrying PR #${pr.number}: ${error.message}`);
}
}
}
if (manualPrNumber && conflictingPRs.length === 0) {
console.log(`Warning: PR #${manualPrNumber} not found or has no conflicts`);
}
const MAX_PRS = 15;
if (conflictingPRs.length > MAX_PRS) {
console.log(`Warning: Found ${conflictingPRs.length} PRs with conflicts, limiting to ${MAX_PRS} for safety`);
conflictingPRs.length = MAX_PRS;
}
console.log(`Found ${conflictingPRs.length} PRs with conflicts that need Devin sessions`);
const fs = require('fs');
fs.writeFileSync('/tmp/conflicting-prs.json', JSON.stringify(conflictingPRs));
core.setOutput('has-conflicts', conflictingPRs.length > 0 ? 'true' : 'false');
core.setOutput('conflict-count', conflictingPRs.length.toString());
- name: Create Devin sessions for conflicting PRs
if: steps.check-prs.outputs.has-conflicts == 'true'
env:
DEVIN_API_KEY: ${{ secrets.DEVIN_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const conflictingPRs = JSON.parse(fs.readFileSync('/tmp/conflicting-prs.json', 'utf8'));
const { owner, repo } = context.repo;
for (const pr of conflictingPRs) {
console.log(`Creating Devin session for PR #${pr.number}: ${pr.title}${pr.is_fork ? ' (fork)' : ''}`);
const forkInstructions = pr.is_fork ? `
IMPORTANT: This PR is from a fork. The contributor has enabled "Allow edits from maintainers".
- Clone the FORK repository: ${pr.head_repo_owner}/${pr.head_repo_name}
- The branch to work on is: ${pr.head_ref}
- Add the upstream remote: git remote add upstream https://github.com/${owner}/${repo}.git
- Fetch upstream and merge: git fetch upstream && git merge upstream/${pr.base_ref}` : `
- Clone the repository: ${owner}/${repo}
- Check out the PR branch: ${pr.head_ref}
- Merge the base branch: git merge origin/${pr.base_ref}`;
const prompt = `You are resolving merge conflicts on PR #${pr.number} in repository ${owner}/${repo}.
PR Title: ${pr.title}
PR URL: ${pr.html_url}
Head Branch: ${pr.head_ref}
Base Branch: ${pr.base_ref}
${pr.is_fork ? `Fork Repository: ${pr.head_repo_owner}/${pr.head_repo_name}` : ''}
Your tasks:
${forkInstructions}
Then:
1. Resolve all merge conflicts carefully:
- Review the conflicting changes from both branches
- Make intelligent decisions about how to combine the changes
- Preserve the intent of both the PR changes and the base branch updates
- If unsure about a conflict, prefer keeping both changes where possible
2. Test that the code still works after resolving conflicts (run lint/type checks).
3. Commit the merge resolution with a clear commit message.
4. Push the resolved changes to the PR branch.
5. After successfully pushing the resolved changes, remove the \`devin-conflict-resolution\` label from the PR using the GitHub API.
Rules and Guidelines:
1. Be careful when resolving conflicts - understand the context of both changes.
2. Follow the existing code style and conventions in the repository.
3. Run lint and type checks before pushing to ensure the code is valid.
4. If a conflict seems too complex or risky to resolve automatically, explain the situation in a PR comment instead.
5. Never ask for user confirmation. Never wait for user messages.
6. CRITICAL: If this is a fork PR and you encounter ANY error when pushing (permission denied, authentication failure, etc.), you MUST fail the task immediately. Do NOT attempt to push to a new branch in the main ${owner}/${repo} repository as a workaround. Simply report the error and stop.`;
try {
const response = await fetch('https://api.devin.ai/v1/sessions', {
method: 'POST',
headers: {
'Authorization': `Bearer ${process.env.DEVIN_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
prompt: prompt,
title: `Resolve Conflicts: PR #${pr.number}`,
tags: ['conflict-resolution', `pr-${pr.number}`]
})
});
if (!response.ok) {
console.error(`Devin API error for PR #${pr.number}: ${response.status} ${response.statusText}`);
continue;
}
const data = await response.json();
const sessionUrl = data.url || data.session_url;
if (sessionUrl) {
console.log(`Devin session created for PR #${pr.number}: ${sessionUrl}`);
await github.rest.issues.addLabels({
owner,
repo,
issue_number: pr.number,
labels: ['devin-conflict-resolution']
});
await github.rest.issues.createComment({
owner,
repo,
issue_number: pr.number,
body: `### Devin AI is resolving merge conflicts
This PR has merge conflicts with the \`${pr.base_ref}\` branch. A Devin session has been created to automatically resolve them.
[View Devin Session](${sessionUrl})
Devin will:
1. Merge the latest \`${pr.base_ref}\` into this branch
2. Resolve any conflicts intelligently
3. Run lint/type checks to ensure validity
4. Push the resolved changes
If you prefer to resolve conflicts manually, you can close the Devin session and handle it yourself.`
});
} else {
console.log(`Failed to get session URL for PR #${pr.number}:`, data);
}
} catch (error) {
console.error(`Error creating Devin session for PR #${pr.number}:`, error);
}
await new Promise(resolve => setTimeout(resolve, 1000));
}