forked from akinjanata/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (69 loc) · 2.85 KB
/
move-existing-issues-to-the-correct-repo.yml
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
name: Move existing issues to correct docs repo
# **What it does**: Move all existing issues to the correct repo
# **Why we have it**: We don't want engineering or content issues in the docs-internal repo
# **Who does it impact**: GitHub staff.
on:
workflow_dispatch:
permissions:
contents: read
jobs:
transfer_issues:
runs-on: ubuntu-latest
if: github.repository == 'github/docs-internal'
steps:
- id: move_to_correct_repo
uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0
env:
TEAM_ENGINEERING_REPO: ${{ secrets.TEAM_ENGINEERING_REPO }}
TEAM_CONTENT_REPO: ${{ secrets.TEAM_CONTENT_REPO }}
with:
github-token: ${{ secrets.DOCS_BOT_PAT_WORKFLOW_READORG }}
script: |
const owner = 'github'
const originalRepo = 'docs-internal'
let correctRepo = process.env.TEAM_ENGINEERING_REPO
const correctRepoObject = await github.rest.repos.get({
owner: owner,
repo: correctRepo
})
const allIssues = await github.paginate(github.rest.issues.listForRepo, {
owner: owner,
repo: originalRepo,
per_page: 100,
labels: ['engineering']
})
for (const issue of allIssues) {
// Extra redundancy with this additional check to be safe
if (issue.labels.find(label => label.name === 'engineering')) {
// Transfer the issue to the correct repo
const issueNodeId = issue.node_id
const correctRepositoryNodeId = correctRepoObject.data.node_id
console.log(`Issue GraphQL Node ID: ${issueNodeId}`)
console.log(`Repository GraphQL Node ID: ${correctRepositoryNodeId}`)
const mutation = `mutation ($id: ID!, $repositoryId: ID!) {
transferIssue(input: {
issueId: $id,
repositoryId: $repositoryId
}) {
issue {
url,
number
}
}
}`
const variables = {
id: issueNodeId,
repositoryId: correctRepositoryNodeId
}
const graph = await github.graphql(mutation, variables)
console.log('GraphQL mutation result:\n' + JSON.stringify(graph))
// Add the same labels to the new issue
const newIssueNumber = graph.transferIssue.issue.number
await github.rest.issues.addLabels({
owner: owner,
repo: correctRepo,
issue_number: newIssueNumber,
labels: issue.labels.map(label => label.name),
})
}
}