diff --git a/.test-infra/dockerized-jenkins/seedjobconfig.xml b/.test-infra/dockerized-jenkins/seedjobconfig.xml index 2ede2430b4548..199f7ab31cf12 100644 --- a/.test-infra/dockerized-jenkins/seedjobconfig.xml +++ b/.test-infra/dockerized-jenkins/seedjobconfig.xml @@ -22,7 +22,7 @@ 2 - https://github.com/apache/beam.git + https://github.com/damgadbot/beam.git diff --git a/.test-infra/jenkins/CommonJobProperties.groovy b/.test-infra/jenkins/CommonJobProperties.groovy index f6b7ac722346b..e6197279f5338 100644 --- a/.test-infra/jenkins/CommonJobProperties.groovy +++ b/.test-infra/jenkins/CommonJobProperties.groovy @@ -38,7 +38,7 @@ class CommonJobProperties { boolean cleanWorkspace = true) { // GitHub project. context.properties { - githubProjectUrl('https://github.com/apache/beam/') + githubProjectUrl('https://github.com/damgadbot/beam/') } // Set JDK version. @@ -56,7 +56,7 @@ class CommonJobProperties { context.scm { git { remote { - github("apache/beam") + github("damgadbot/beam") // Single quotes here mean that ${ghprbPullId} is not interpolated and instead passed // through to Jenkins where it refers to the environment variable. refspec('+refs/heads/*:refs/remotes/origin/* ' + diff --git a/.test-infra/jenkins/job_00_seed.groovy b/.test-infra/jenkins/job_00_seed.groovy index e01bc347462ef..b4a59f1fe9b6b 100644 --- a/.test-infra/jenkins/job_00_seed.groovy +++ b/.test-infra/jenkins/job_00_seed.groovy @@ -25,7 +25,7 @@ job('beam_SeedJob') { ' on Jenkins DSL groovy files checked into the code repository.') properties { - githubProjectUrl('https://github.com/apache/beam/') + githubProjectUrl('https://github.com/damgadbot/beam/') } // Restrict to only run on Jenkins executors labeled 'beam' @@ -38,7 +38,7 @@ job('beam_SeedJob') { scm { git { remote { - github('apache/beam') + github('damgadbot/beam') // ${ghprbPullId} is not interpolated by groovy, but passed through to Jenkins where it // refers to the environment variable @@ -123,4 +123,5 @@ job('beam_SeedJob') { removeAction('DISABLE') } } + disabled(false) } diff --git a/.test-infra/jenkins/job_seed_standalone.groovy b/.test-infra/jenkins/job_seed_standalone.groovy index 33ac831069e7c..eb9cbedd73376 100644 --- a/.test-infra/jenkins/job_seed_standalone.groovy +++ b/.test-infra/jenkins/job_seed_standalone.groovy @@ -25,7 +25,7 @@ job('beam_SeedJob_Standalone') { ' on Jenkins DSL groovy files checked into the code repository.') properties { - githubProjectUrl('https://github.com/apache/beam/') + githubProjectUrl('https://github.com/damgadbot/beam/') } // Restrict to only run on Jenkins executors labeled 'beam' @@ -38,7 +38,7 @@ job('beam_SeedJob_Standalone') { scm { git { remote { - github('apache/beam') + github('damgadbot/beam') // ${ghprbPullId} is not interpolated by groovy, but passed through to Jenkins where it // refers to the environment variable diff --git a/.test-infra/metrics/grafana/dashboards/code_velocity.json b/.test-infra/metrics/grafana/dashboards/code_velocity.json index b750dcbc063c9..6ab63db849dfc 100644 --- a/.test-infra/metrics/grafana/dashboards/code_velocity.json +++ b/.test-infra/metrics/grafana/dashboards/code_velocity.json @@ -51,7 +51,7 @@ "targetBlank": true, "title": "Link to oldest open PRs", "type": "absolute", - "url": "https://github.com/apache/beam/pulls?q=is%3Apr+is%3Aopen+sort%3Acreated-asc" + "url": "https://github.com/damgadbot/beam/pulls?q=is%3Apr+is%3Aopen+sort%3Acreated-asc" } ], "mappingType": 1, @@ -158,7 +158,7 @@ "targetBlank": true, "title": "Link to oldest open PRs", "type": "absolute", - "url": "https://github.com/apache/beam/pulls?q=is%3Apr+is%3Aopen+sort%3Acreated-asc" + "url": "https://github.com/damgadbot/beam/pulls?q=is%3Apr+is%3Aopen+sort%3Acreated-asc" } ], "mappingType": 1, @@ -265,7 +265,7 @@ "targetBlank": true, "title": "Least updated CLs", "type": "absolute", - "url": "https://github.com/apache/beam/pulls?q=is%3Aopen+is%3Apr+sort%3Aupdated-asc" + "url": "https://github.com/damgadbot/beam/pulls?q=is%3Aopen+is%3Apr+sort%3Aupdated-asc" } ], "mappingType": 1, @@ -371,7 +371,7 @@ { "title": "Least updated PRs", "type": "absolute", - "url": "https://github.com/apache/beam/pulls?q=is%3Aopen+is%3Apr+sort%3Aupdated-asc" + "url": "https://github.com/damgadbot/beam/pulls?q=is%3Aopen+is%3Apr+sort%3Aupdated-asc" } ], "mappingType": 1, @@ -487,7 +487,7 @@ "link": true, "linkTargetBlank": true, "linkTooltip": "PR", - "linkUrl": "https://github.com/apache/beam/pull/${__cell:raw}", + "linkUrl": "https://github.com/damgadbot/beam/pull/${__cell:raw}", "mappingType": 1, "pattern": "pr_id", "thresholds": [], diff --git a/.test-infra/metrics/sync/github/queries.py b/.test-infra/metrics/sync/github/queries.py index f734a3c8c618e..1e1dc73b990fb 100644 --- a/.test-infra/metrics/sync/github/queries.py +++ b/.test-infra/metrics/sync/github/queries.py @@ -12,12 +12,12 @@ ''' This query is used to fetch PR data from github via Github API v4 (GraphQL). -Returns PRs on apache/beam repo that are older than provided timestamp. +Returns PRs on damgadbot/beam repo that are older than provided timestamp. Time format "2017-10-26T20:00:00Z ''' MAIN_PR_QUERY = ''' query { - search(query: "type:pr repo:apache/beam updated:> sort:updated-asc", type: ISSUE, first: 100) { + search(query: "type:pr repo:damgadbot/beam updated:> sort:updated-asc", type: ISSUE, first: 100) { issueCount pageInfo { endCursor