Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 5 Next »

Basic Requirement
1.Issue Migration
2.Related Comment Migration
3.Related Attachment Migration
4.Related Assignee Migration

Available API
API v3 : https://developer.github.com/v3/issues/

API v4 : https://developer.github.com/v4/
API Explorer : https://developer.github.com/v4/explorer/
Sample code to get first 100 issues and first 100 comments of
those issues
Example query to get first 100 issue and their first 100 comments.

query first100Issues {
  repository(owner: "cinvento", name: "codingground") {
    issues(first:100) {
      edges {
        node {
          title
          url
          body
          assignees(first:1) {
            edges {
              node {
                id
              }
            }
          }
          comments(first: 100) {
            edges {
              node {
               body
              }
            }
          }
          labels(first:100) {
            edges {
              node {
                name
              }
            }
          }
        }
      }
    }
  }
}

Option available to export all the data in github including issues and attachments
https://github.blog/2018-12-19-download-your-data/

Basic Analysis of data present in SiftScience/code repository.

A)There are total 2861 open issues and 13940 closed issues.

B)Projects (count-8)
1.Set up Digicert access for sre@
2.GCS costs Q2 2020
3.bigtable backup 2020
4.Migrate expr from AWS to GCP
5.Prod model GCP migration (groundwork)
6.Diagnose Mongo Issues Jan 2020
7.Mongo Upgrade
8.Ubuntu 18

C)Milestones(Sprints in Jira)
51 open 123 closed

D)116 Labels

E)31 users with sift in their username
(these are the unique assignee with sift in their username)

  • No labels